diff --git a/photon-client/src/components/settings/NetworkingCard.vue b/photon-client/src/components/settings/NetworkingCard.vue index 0b573e4903..67f837033d 100644 --- a/photon-client/src/components/settings/NetworkingCard.vue +++ b/photon-client/src/components/settings/NetworkingCard.vue @@ -1,13 +1,12 @@ @@ -142,7 +123,7 @@ const netManagerIfaceIdx = computed({ tooltip="DHCP will make the radio (router) automatically assign an IP address; this may result in an IP address that changes across reboots. Static IP assignment means that you pick the IP address and it won't change." :input-cols="12 - 4" :list="['DHCP', 'Static']" - :disabled="!allowNetworkChanges()" + :disabled="!(useSettingsStore().network.shouldManage && useSettingsStore().network.canManage)" /> ({ :input-cols="12 - 4" label="Static IP" :rules="[(v) => isValidIPv4(v) || 'Invalid IPv4 address']" - :disabled="!allowNetworkChanges()" + :disabled="!(useSettingsStore().network.shouldManage && useSettingsStore().network.canManage)" /> Advanced Networking @@ -170,12 +151,12 @@ const netManagerIfaceIdx = computed({ class="pt-2" /> i.connName); } }, actions: {