Skip to content

Commit 7583bea

Browse files
authoredJun 28, 2024··
fix(client): missing fallbackIcon prop for TabIcon (#489)
1 parent c477f9c commit 7583bea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎packages/client/src/components/common/SplitScreen.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ const showGridPanel = ref(false)
7272
<TabIcon
7373
text-xl
7474
:icon="currentTab?.icon"
75-
title="Settings"
75+
:title="currentTab.name"
76+
:fallback="(currentTab as ModuleBuiltinTab).fallbackIcon"
7677
:show-title="false"
7778
/>
7879
<span capitalize>
79-
8080
{{ currentTab?.name }}
8181
</span>
8282
</div>

‎packages/client/src/pages/settings.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ const minimizePanelInteractiveLabel = computed(() => {
125125
@update:model-value="(v: boolean) => toggleTab(tab.name, v)"
126126
>
127127
<div flex="~ gap-2" flex-auto items-center justify-start pr-4 text-sm>
128-
<TabIcon text-xl :icon="tab.icon" :title="tab.title" />
128+
<TabIcon text-xl :icon="tab.icon" :fallback="tab.fallbackIcon" :title="tab.title" />
129129
<span>{{ tab.title }}</span>
130130
<div flex-auto />
131131
<template v-if="pinnedTabs.includes(tab.name)">

0 commit comments

Comments
 (0)
Please sign in to comment.