mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-01-03 10:10:10 -06:00
[client] Overwrite name conflict resolution
This commit is contained in:
@@ -51,6 +51,14 @@ class ActionView extends StatelessWidget {
|
||||
trailing: Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
if (showRenameOptions)
|
||||
IconButton(
|
||||
icon: const Icon(Icons.warning),
|
||||
tooltip: 'Overwrite',
|
||||
onPressed: () async {
|
||||
if (action is! ResourceBindAction) return;
|
||||
action.updateConflictResolution(resourceBindConflictResolutionOverwrite);
|
||||
}),
|
||||
if (showRenameOptions)
|
||||
IconButton(
|
||||
icon: const Icon(Icons.healing),
|
||||
|
||||
Reference in New Issue
Block a user