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 169ae4e commit 71cf548Copy full SHA for 71cf548
src/ng-generate/table/index.ts
@@ -66,9 +66,12 @@ export function generateTable(options: Schema): Rule {
66
67
const defaultOptions = {
68
skipImport: false,
69
- configFile: options.configFile !== WIZARD_CONFIG_FILE ? WIZARD_CONFIG_FILE : options.configFile,
70
};
71
+ if (options.configFile !== WIZARD_CONFIG_FILE) {
72
+ options.configFile = WIZARD_CONFIG_FILE;
73
+ }
74
+
75
options = {
76
...defaultOptions,
77
...options,
0 commit comments