onClick -> handler

This commit is contained in:
ThatOneCalculator 2022-07-26 14:35:12 -07:00
parent b036c9d490
commit 28473d382a
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "misskey", "name": "misskey",
"version": "12.118.0-calc.6.b4", "version": "12.118.0-calc.7.b4",
"codename": "indigo", "codename": "indigo",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -115,22 +115,22 @@ const headerActions = $computed(() => [{
icon: 'fas fa-list-ul', icon: 'fas fa-list-ul',
title: i18n.ts.lists, title: i18n.ts.lists,
iconOnly: true, iconOnly: true,
onClick: chooseList, handler: chooseList,
}, { }, {
icon: 'fas fa-satellite', icon: 'fas fa-satellite',
title: i18n.ts.antennas, title: i18n.ts.antennas,
iconOnly: true, iconOnly: true,
onClick: chooseAntenna, handler: chooseAntenna,
}, { }, {
icon: 'fas fa-satellite-dish', icon: 'fas fa-satellite-dish',
title: i18n.ts.channel, title: i18n.ts.channel,
iconOnly: true, iconOnly: true,
onClick: chooseChannel, handler: chooseChannel,
}, { }, {
icon: 'fas fa-calendar-alt', icon: 'fas fa-calendar-alt',
title: i18n.ts.jumpToSpecifiedDate, title: i18n.ts.jumpToSpecifiedDate,
iconOnly: true, iconOnly: true,
onClick: timetravel, handler: timetravel,
}]); }]);
const headerTabs = $computed(() => [{ const headerTabs = $computed(() => [{