Skip to content

Commit

Permalink
fix(ui): make manage nodes dialog persistent and timoeut label (#1688)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Sep 14, 2021
1 parent 8dea0da commit 75728a8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/usage/setup.md
Expand Up @@ -50,7 +50,7 @@ Properties of a **valueId configuration**:
- **Log level**: Set the log level (Error, Warn, Info, Verbose, Debug, Silly)
- **Log to file**: Enable this to store the logs to a file
- **Log nodes**: Filter zwave-js logs to log just this nodes
- **Commands timeout**: Seconds to wait before automatically stop inclusion/exclusion
- **Inclusion/Exclusion timeout**: Seconds to wait before automatically stop inclusion/exclusion
- **Hidden settings**: Advanced settings not visible to the user interface, you can edit these by setting in the `settings.json` file you fins in store directory
- `zwave.options` overrides options passed to the zwave js Driver constructor [ZWaveOptions](https://zwave-js.github.io/node-zwave-js/#/api/driver?id=zwaveoptions)

Expand Down
4 changes: 2 additions & 2 deletions src/components/Settings.vue
Expand Up @@ -458,11 +458,11 @@
v-model.number="
newZwave.commandsTimeout
"
label="Commands timeout"
label="Inclusion/Exclusion timeout"
:rules="[rules.required]"
required
suffix="seconds"
hint="Seconds to wait before stop inclusion/exclusion mode"
hint="Seconds to wait before to stop inclusion/exclusion mode"
type="number"
></v-text-field>
</v-col>
Expand Down
6 changes: 5 additions & 1 deletion src/components/dialogs/DialogAddRemove.vue
@@ -1,13 +1,17 @@
<template>
<v-dialog
v-model="value"
@click:outside="$emit('close')"
@keydown.esc="$emit('close')"
max-width="800px"
persistent
>
<v-card :loading="loading">
<v-card-title>
<span class="headline">Nodes Manager</span>
<v-spacer></v-spacer>
<v-btn icon @click="$emit('close')"
><v-icon>clear</v-icon></v-btn
>
</v-card-title>

<v-card-text>
Expand Down

0 comments on commit 75728a8

Please sign in to comment.