Skip to content

Commit c107dbf

Browse files
committed
Fixes database server deletion
1 parent 946512b commit c107dbf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
1111
* Fixes an issue that could occur if a UUID contained `#e#` formatting within it when it comes to creating databases.
1212
* Fixed node status display to account for updated daemon security changes.
1313
* Fixes default language being selected as German (defaults to English now).
14+
* Fixes bug preventing the deletion of database servers.
1415

1516
### Changed
1617
* Using `node:<name>` when filtering servers now properly filters the servers by node name, rather than looking for the node ID.

resources/views/admin/databases/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
<td>{{ $db->username }}</td>
9494
<td class="text-center">{{ $db->c_databases }}</td>
9595
<td>@if(is_null($db->a_linkedNode))<em>unlinked</em>@else{{ $db->a_linkedNode }}@endif</td>
96-
<td class="text-center"><a href="#" class="text-danger" data-action="delete" data-type="delete-dbserver" data-attr="{{ $db->id }}"><i class="fa fa-trash-o"></i></a></td>
96+
<td class="text-center"><a href="#" class="text-danger" data-action="delete" data-type="delete-server" data-attr="{{ $db->id }}"><i class="fa fa-trash-o"></i></a></td>
9797
</tr>
9898
@endforeach
9999
</tbody>

0 commit comments

Comments
 (0)