Skip to content

Commit 0f0b9ec

Browse files
wxiaoguangHesterG
authored andcommitted
fix lint
1 parent daa4ef5 commit 0f0b9ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web_src/js/components/RepoBranchTagSelector.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@
3838
</template>
3939
<div class="scrolling menu" ref="scrollContainer">
4040
<svg-icon name="octicon-rss" symbol-id="svg-symbol-octicon-rss"/>
41-
<div class="loading-indicator is-loading" v-if="isLoading"></div>
41+
<div class="loading-indicator is-loading" v-if="isLoading"/>
4242
<div v-for="(item, index) in filteredItems" :key="item.name" class="item" :class="{selected: item.selected, active: active === index}" @click="selectItem(item)" :ref="'listItem' + index">
4343
{{ item.name }}
4444
<a v-show="enableFeed && mode === 'branches'" role="button" class="rss-icon ui compact right" :href="rssURLPrefix + item.url" target="_blank" @click.stop>
4545
<!-- creating a lot of Vue component is pretty slow, so we use a static SVG here -->
46-
<svg width="14" height="14" class="svg octicon-rss"><use href="#svg-symbol-octicon-rss"></use></svg>
46+
<svg width="14" height="14" class="svg octicon-rss"><use href="#svg-symbol-octicon-rss"/></svg>
4747
</a>
4848
</div>
4949
<div class="item" v-if="showCreateNewBranch" :class="{active: active === filteredItems.length}" :ref="'listItem' + filteredItems.length">
@@ -84,7 +84,7 @@ import {createApp, nextTick} from 'vue';
8484
import $ from 'jquery';
8585
import {SvgIcon} from '../svg.js';
8686
import {pathEscapeSegments} from '../utils/url.js';
87-
import {showErrorToast} from "../modules/toast.js";
87+
import {showErrorToast} from '../modules/toast.js';
8888
8989
const sfc = {
9090
components: {SvgIcon},

0 commit comments

Comments
 (0)