@effect-app/vue 2.80.3-next.1 → 2.80.3-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -187,11 +187,11 @@ export class CommanderImpl {
|
|
|
187
187
|
const action = this.intl.formatMessage({
|
|
188
188
|
id: namespace,
|
|
189
189
|
defaultMessage: id
|
|
190
|
-
}, { ...options?.state,
|
|
190
|
+
}, { ...options?.state, _isLabel: false });
|
|
191
191
|
const label = this.intl.formatMessage({
|
|
192
192
|
id: namespace,
|
|
193
193
|
defaultMessage: id
|
|
194
|
-
}, { ...options?.state,
|
|
194
|
+
}, { ...options?.state, _isLabel: true });
|
|
195
195
|
const context = CommandContext.of({
|
|
196
196
|
...makeBaseInfo(id, options),
|
|
197
197
|
action,
|
package/package.json
CHANGED
|
@@ -1196,12 +1196,12 @@ export class CommanderImpl<RT> {
|
|
|
1196
1196
|
const action = this.intl.formatMessage({
|
|
1197
1197
|
id: namespace,
|
|
1198
1198
|
defaultMessage: id
|
|
1199
|
-
}, { ...options?.state,
|
|
1199
|
+
}, { ...options?.state, _isLabel: false })
|
|
1200
1200
|
|
|
1201
1201
|
const label = this.intl.formatMessage({
|
|
1202
1202
|
id: namespace,
|
|
1203
1203
|
defaultMessage: id
|
|
1204
|
-
}, { ...options?.state,
|
|
1204
|
+
}, { ...options?.state, _isLabel: true })
|
|
1205
1205
|
|
|
1206
1206
|
const context = CommandContext.of({
|
|
1207
1207
|
...makeBaseInfo(id, options),
|