Browse Source

chore(gui): added spacing between folder name and error message (#10201)

### Purpose
Filesystem watcher errors didnt have any whitespace between the share
name and the error message, making it hard to read. A simple colon and
whitespace solves this issue
ardevd 3 months ago
parent
commit
385ca6772c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/default/index.html

+ 1 - 1
gui/default/index.html

@@ -333,7 +333,7 @@
               </p>
               <table>
                 <tr ng-repeat="(id, err) in fsWatcherErrorMap()">
-                  <td>{{folderLabel(id)}}</td><td>{{err}}</td>
+                  <td>{{folderLabel(id)}}: </td><td>{{err}}</td>
                 </tr>
               </table>
             </div>