Remove special "existing tags" profile case; existing tags profile now empty.

This commit is contained in:
stopflock
2026-02-06 09:56:08 -06:00
parent c50d43e00c
commit 8804fdadf4
5 changed files with 25 additions and 38 deletions
+3 -3
View File
@@ -319,9 +319,9 @@ class SessionState extends ChangeNotifier {
dirty = true;
}
// Only update operator profile if explicitly provided or different from current
if (operatorProfile != null && operatorProfile != _editSession!.operatorProfile) {
_editSession!.operatorProfile = operatorProfile;
// Only update operator profile if explicitly provided (including null) and different from current
if (operatorProfile != _editSession!.operatorProfile) {
_editSession!.operatorProfile = operatorProfile; // This can be null
dirty = true;
}
if (target != null && target != _editSession!.target) {