privs editor: "New user" ->"Previously unprivileged"

This commit is contained in:
Oystein Kristoffer Tveit 2024-08-17 21:27:46 +02:00
parent 466d4a8b96
commit 54a38255e6
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
1 changed files with 1 additions and 1 deletions

View File

@ -540,7 +540,7 @@ pub fn display_privilege_diffs(diffs: &BTreeSet<DatabasePrivilegesDiff>) -> Stri
table.add_row(row![
p.db,
p.user,
"(New user)\n".to_string() + &display_new_privileges_list(p)
"(Previously unprivileged)\n".to_string() + &display_new_privileges_list(p)
]);
}
DatabasePrivilegesDiff::Modified(p) => {