We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d7af28 commit f3ae224Copy full SHA for f3ae224
src/dashboard/Synapse.Dashboard/Pages/Workflows/Create/View.razor
@@ -136,8 +136,6 @@ else
136
protected string? operatorName { get; set; }
137
protected EquatableDictionary<string, string> labels { get; set; } = [];
138
protected EquatableDictionary<string, string> annotations { get; set; } = [];
139
- string labelKey = string.Empty;
140
- string labelValue = string.Empty;
141
142
[Parameter] public string? Namespace { get; set; }
143
[Parameter] public string? Name { get; set; }
@@ -174,12 +172,4 @@ else
174
172
}
175
173
176
177
- protected void AddLabel()
178
- {
179
- Store.AddLabel(labelKey, labelValue);
180
- labelKey = string.Empty;
181
- labelValue = string.Empty;
182
- OnStateChanged();
183
- }
184
-
185
0 commit comments