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
This commit is contained in:
ardevd
2025-06-28 05:06:45 -04:00
committed by GitHub
parent 88c307b65b
commit 385ca6772c

View File

@@ -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>