This commit is contained in:
ThatOneCalculator 2022-12-06 00:10:00 -08:00
parent 266229daec
commit 09fd61a97b
2 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
{
"name": "calckey",
"version": "12.119.0-calc.19-b10",
"version": "12.119.0-calc.19-b11",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -160,19 +160,19 @@ async function chooseList(ev: MouseEvent): Promise<void> {
async function chooseAntenna(ev: MouseEvent): Promise<void> {
const antennas = await os.api('antennas/list');
const items = antennas.map((antenna) => ({
type: 'link' as const,
text: antenna.name,
icon: '',
indicate: antenna.hasUnreadNote,
to: `/timeline/antenna/${antenna.id}`,
})).unshift({
const items = [{
type: 'link' as const,
indicate: false,
text: i18n.ts.manageAntennas,
icon: 'ph-faders-horizontal-bold ph-lg',
to: '/my/antennas',
});
}].concat(antennas.map((antenna) => ({
type: 'link' as const,
text: antenna.name,
icon: '',
indicate: antenna.hasUnreadNote,
to: `/timeline/antenna/${antenna.id}`,
})));
os.popupMenu(items, ev.currentTarget ?? ev.target);
}