mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-21 09:27:31 -07:00
antenna icon from ph-flying-saucer to ph-cell-tower
This commit is contained in:
parent
c03b6c1dce
commit
21e4eeb67f
9 changed files with 10 additions and 10 deletions
|
@ -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",
|
||||
},
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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,
|
||||
),
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue