Skip to content

Commit

Permalink
core: frontend: components: wifi: Use new WifiNetworkCard
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
  • Loading branch information
patrickelectric committed Sep 27, 2023
1 parent 660667b commit 804cbee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/frontend/src/components/wifi/WifiManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</v-app-bar>

<v-sheet>
<network-card
<wifi-network-card
v-if="current_network"
connected
:network="current_network"
Expand All @@ -66,7 +66,7 @@
class="ml-7 mr-7"
/>
<div v-if="!filtered_networks.isEmpty()">
<network-card
<wifi-network-card
v-for="(network, key) in filtered_networks"
:key="key"
class="available-network"
Expand Down Expand Up @@ -144,15 +144,15 @@ import back_axios from '@/utils/api'
import SpinningLogo from '../common/SpinningLogo.vue'
import ConnectionDialog from './ConnectionDialog.vue'
import DisconnectionDialog from './DisconnectionDialog.vue'
import NetworkCard from './NetworkCard.vue'
import WifiNetworkCard from './WifiNetworkCard.vue'
import WifiSettingsDialog from './WifiSettingsDialog.vue'
const notifier = new Notifier(wifi_service)
export default Vue.extend({
name: 'WifiManager',
components: {
NetworkCard,
WifiNetworkCard,
SpinningLogo,
ConnectionDialog,
DisconnectionDialog,
Expand Down

0 comments on commit 804cbee

Please sign in to comment.