antenna icon from ph-flying-saucer to ph-cell-tower

This commit is contained in:
nelle 2024-08-09 02:39:50 -06:00
parent c03b6c1dce
commit 21e4eeb67f
9 changed files with 10 additions and 10 deletions

View file

@ -63,7 +63,7 @@ export const navbarItemDef = reactive({
*/
antennas: {
title: "antennas",
icon: "ph-flying-saucer ph-bold ph-lg",
icon: "ph-cell-tower ph-bold ph-lg",
show: computed(() => $i != null),
to: "/my/antennas",
},

View file

@ -60,7 +60,7 @@
</div>
<div class="item _panel online">
<div class="icon">
<i class="ph-broadcast ph-bold ph-xl"></i>
<i class="ph-cell-tower ph-bold ph-xl"></i>
</div>
<div class="body">
<div class="value">

View file

@ -117,7 +117,7 @@ definePageMetadata(
antenna
? {
title: antenna.name,
icon: "ph-flying-saucer ph-bold ph-lg",
icon: "ph-cell-tower ph-bold ph-lg",
}
: null,
),

View file

@ -35,7 +35,7 @@ function onAntennaCreated() {
definePageMetadata({
title: i18n.ts.manageAntennas,
icon: "ph-flying-saucer ph-bold ph-lg",
icon: "ph-cell-tower ph-bold ph-lg",
});
</script>

View file

@ -40,7 +40,7 @@ const headerTabs = $computed(() => []);
definePageMetadata({
title: i18n.ts.manageAntennas,
icon: "ph-flying-saucer ph-bold ph-lg",
icon: "ph-cell-tower ph-bold ph-lg",
});
</script>

View file

@ -29,7 +29,7 @@
:to="`/timeline/antenna/${antenna.id}`"
>
<i
class="ph-flying-saucer ph-bold ph-lg"
class="ph-cell-tower ph-bold ph-lg"
></i
><i
:class="`${
@ -98,7 +98,7 @@ onDeactivated(() => {
definePageMetadata({
title: i18n.ts.manageAntennas,
icon: "ph-flying-saucer ph-bold ph-lg",
icon: "ph-cell-tower ph-bold ph-lg",
});
</script>

View file

@ -210,7 +210,7 @@ const headerActions = $computed(() => [
handler: chooseList,
},
{
icon: "ph-flying-saucer ph-bold ph-lg",
icon: "ph-cell-tower ph-bold ph-lg",
title: i18n.ts.antennas,
text: i18n.ts.antennas,
iconOnly: true,

View file

@ -6,7 +6,7 @@
@parent-focus="($event) => emit('parent-focus', $event)"
>
<template #header>
<i class="ph-flying-saucer ph-bold ph-lg"></i
<i class="ph-cell-tower ph-bold ph-lg"></i
><span style="margin-left: 8px">{{ column.name }}</span>
</template>

View file

@ -139,7 +139,7 @@ const choose = async (ev) => {
]);
const antennaItems = antennas.map((antenna) => ({
text: antenna.name,
icon: "ph-flying-saucer ph-bold ph-lg",
icon: "ph-cell-tower ph-bold ph-lg",
action: () => {
widgetProps.antenna = antenna;
setSrc("antenna");