Skip to content

Commit

Permalink
fixed conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
BabyElias committed Jul 16, 2024
1 parent a1393d1 commit 48e969c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions docs/pages/playground.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@
setTimeout(() => {
this.updateLoadingMessage('');
}, 3000);
}, 2000); // Simulate a 2 second delay for fetching data
}, 5000);
}, 10000); // Simulate a 10 second delay for fetching data
},
},
};
Expand Down Expand Up @@ -184,6 +184,5 @@ h1, h2 {
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
visibility: hidden;
}
</style>
4 changes: 2 additions & 2 deletions lib/KTable/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
{{ header.label }}
</slot>
<span v-if="sortable && header.dataType !== DATA_TYPE_OTHERS" class="sort-icon">
<span v-if="sortKey === index && sortOrder === SORT_ORDER_ASC">⬆️</span>
<span v-else-if="sortKey === index && sortOrder === SORT_ORDER_DESC">⬇️</span>
<span v-if="sortKey === index && sortOrder === SORT_ORDER_ASC"><KIcon icon="dropup" /></span>
<span v-else-if="sortKey === index && sortOrder === SORT_ORDER_DESC"><KIcon icon="dropdown" /></span>
<span v-else>⬍</span>
</span>
</th>
Expand Down

0 comments on commit 48e969c

Please sign in to comment.