Skip to content

Commit

Permalink
fix(client): correct typos on printer manager hover hints fixed #1101
Browse files Browse the repository at this point in the history
  • Loading branch information
NotExpectedYet committed Jun 19, 2022
1 parent 04c19f7 commit 0d3a3f3
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions server/views/partials/PrinterManager/printerManagementBtns.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="row px-1" id="actionsBarBody">
<div class="col-12">
<div class="dropdown">
<button class="btn btn-success dropdown-toggle float-left mr-1" type="button"
<button title="Various printer manager actions" class="btn btn-success dropdown-toggle float-left mr-1" type="button"
id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fas fa-print"></i> Printer Manager
</button>
Expand All @@ -16,15 +16,19 @@
id="addPrinterBtn"
href="#"
aria-expanded="false"><i class="fas fa-plus fa-sm text-success"></i> Add</a>
<a class="dropdown-item" id="editPrinterBtn" type="button" class="btn btn-warning text-dark"

<a class="dropdown-item" id="editPrinterBtn" type="button" class="btn btn-warning text-dark" title="Bulk edit your printers connection settings"
data-toggle="modal" data-target="#printerSelectModal"><i class="fas fa-edit text-info"></i> Bulk Edit</a>
<a class="dropdown-item" title="Delete Printers from your farm"

<a class="dropdown-item" title="Bulk delete printers from your farm"
id="deletePrintersBtn"
data-toggle="modal" data-target="#printerSelectModal"><i class="fas fa-trash text-danger"></i> Bulk Delete</a>
<a class="dropdown-item" title="Delete Printers from your farm"

<a class="dropdown-item" title="Bulk enable disabled printers on your farm"
id="enablePrintersBtn"
data-toggle="modal" data-target="#printerSelectModal"><i class="fas fa-running text-success"></i> Bulk Enable</a>
<a class="dropdown-item" title="Delete Printers from your farm"

<a class="dropdown-item" title="Bulk disable printers on your farm"
id="disablePrintersBtn"
data-toggle="modal" data-target="#printerSelectModal"><i class="fas fa-wheelchair"></i> Bulk Disable</a>
<h6 class="dropdown-header">Actions</h6>
Expand All @@ -46,21 +50,21 @@
</a>
<h6 class="dropdown-header">Printer Commands</h6>
<a class="dropdown-item"
title="Add printers by scanning your network for online OctoPrint instances."
title="Connect OctoPrint to a bulk set of printers"
id="bulkConnectBtn"
aria-expanded="false"
data-toggle="modal" data-target="#printerSelectModal">
<i class="fas fa-link text-success"></i> Bulk Connect
</a>
<a class="dropdown-item"
title="Add printers by scanning your network for online OctoPrint instances."
title="Disconnect OctoPrint from a bulk set of printers"
id="bulkDisconnectBtn"
aria-expanded="false"
data-toggle="modal" data-target="#printerSelectModal">
<i class="fas fa-unlink text-danger"></i> Bulk Disconnect
</a>
<a class="dropdown-item"
title="Add printers by scanning your network for online OctoPrint instances."
title="Bulk power actions to OctoPrint instances."
id="bulkPowerBtn">
<i class="fas fa-power-off text-danger"
aria-expanded="false"
Expand Down

0 comments on commit 0d3a3f3

Please sign in to comment.