Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/nodes-table/NodeDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
</v-alert>

<v-alert
class="pb-0"
class="mb-0"
text
style="white-space: break-spaces"
type="info"
Expand Down
13 changes: 12 additions & 1 deletion src/views/SmartStart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,18 @@ export default {

let item = await this.app.confirm(
(existingItem ? 'Update' : 'New') + ' entry',
'',
`
<div role="alert" class="v-alert mb-0 v-sheet theme--dark v-alert--text info--text">
<div class="v-alert__wrapper">
<i aria-hidden="true" class="v-icon notranslate v-alert__icon material-icons theme--dark info--text">info</i>
<div class="v-alert__content">
<small class="pb-2">
If you are using Home Assistant (or other integrations) note that provisioning entries "name" and "location" will be shared with the integration. Leave them empty if you want to configure them manually in the integration.
</small>
</div>
</div>
</div>
`,
'info',
{
confirmText: existingItem ? 'Update' : 'Add',
Expand Down
Loading