mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-12-12 21:58:58 +09:00
enhance(frontend): changed widget icon in header
This commit is contained in:
parent
a99b033a78
commit
8d6d7ac109
@ -174,14 +174,14 @@ async function reloadAsk() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const headerActions = $computed(() => [{
|
const headerActions = $computed(() => [{
|
||||||
icon: friendlyEnableNotifications.value ? 'ti ti-notification-off' : 'ti ti-notification',
|
icon: friendlyEnableNotifications.value ? 'ti ti-notification' : 'ti ti-notification-off',
|
||||||
text: i18n.ts.friendlyEnableNotifications,
|
text: i18n.ts.friendlyEnableNotifications,
|
||||||
handler: () => {
|
handler: () => {
|
||||||
friendlyEnableNotifications.value = !friendlyEnableNotifications.value;
|
friendlyEnableNotifications.value = !friendlyEnableNotifications.value;
|
||||||
reloadAsk();
|
reloadAsk();
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
icon: friendlyEnableWidgets.value ? 'ti ti-layout-sidebar-right-collapse' : 'ti ti-layout-sidebar-right-expand',
|
icon: friendlyEnableWidgets.value ? 'ti ti-apps' : 'ti ti-apps-off',
|
||||||
text: i18n.ts.friendlyEnableWidgets,
|
text: i18n.ts.friendlyEnableWidgets,
|
||||||
handler: () => {
|
handler: () => {
|
||||||
friendlyEnableWidgets.value = !friendlyEnableWidgets.value;
|
friendlyEnableWidgets.value = !friendlyEnableWidgets.value;
|
||||||
|
Loading…
Reference in New Issue
Block a user