Skip to content

Commit

Permalink
0.1.7
Browse files Browse the repository at this point in the history
fix missing wemo list on fresh install
  • Loading branch information
jneilliii committed Jul 30, 2020
1 parent d754db7 commit 763241f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions octoprint_wemoswitch/templates/wemoswitch_settings.jinja2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<h4>Wemo Switch Settings</h4>
<table class="table table-condensed" data-bind='visible: settings.settings.plugins.wemoswitch.arrSmartplugs().length > 0'>
<table class="table table-condensed">
<thead>
<tr>
<td>{{ _('Plug') }}</td>
Expand All @@ -25,7 +25,7 @@
<td style="text-align:center">
<div class="btn-group">
<a href="#" class="btn btn-mini icon-pencil" data-bind="click: $root.editPlug"></a>
<a href="#" class="btn btn-mini icon-trash" data-bind="click: $root.removePlug, visible: $root.settings.settings.plugins.wemoswitch.arrSmartplugs().length > 1"></a>
<a href="#" class="btn btn-mini icon-trash" data-bind="click: $root.removePlug"></a>
</div>
</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
plugin_name = "OctoPrint-WemoSwitch"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "0.1.6"
plugin_version = "0.1.7"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand Down

0 comments on commit 763241f

Please sign in to comment.