Skip to content

Commit

Permalink
disable installing the system packages
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriiNazarenkoTine committed Apr 1, 2024
1 parent e0c7fc3 commit 7158aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/rr-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -1770,7 +1770,7 @@ Ext.define("SYNOCOMMUNITY.RRManager.Addons.Main", {
onCellClick: function (grid, recordIndex, i, s) {
var record = grid.store.data.get(recordIndex);
var id = grid.getColumnModel().getColumnAt(i).id;
if (id !== 'system') {
if (id !== 'system' && record.data['system'] === false) {
record.data[id] = !record.data[id];
grid.getView().refresh();
}
Expand Down

0 comments on commit 7158aba

Please sign in to comment.