other
/
mew-iview
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
dba576ca172e19574a92c0a00d3a2a025e8d6006
Authored by
梁灏
2019-03-18 18:04:42 +0800
1 parent
7765d4b6
fix Tabs sort in Firefox
Showing
1 changed file
with
0 additions
and
2 deletions
Show diff stats
src/components/tabs/tabs.vue
Inline
Side-by-side
src/components/tabs/tabs.vue
Wrap text
Show/Hide comments
View file @
dba576c
...
...
@@ -191,8 +191,6 @@
191
191
TabPanes.sort((a, b) => {
192
192
if (a.index && b.index) {
193
193
return a.index > b.index ? 1 : -1;
194
- } else {
195
- return 1;
196
194
}
197
195
});
198
196
return TabPanes;
...
...