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 87b2931 commit fc7e4b3Copy full SHA for fc7e4b3
projects/igniteui-angular/migrations/update-12_0_0/index.ts
@@ -57,7 +57,7 @@ export default (): Rule => (host: Tree, context: SchematicContext) => {
57
}
58
};
59
60
- const isEmptyOrSpaces = (str) => str === null || str === '' || str === '\n' || str === '\r\n' || str.match(/^[\n\t]* *$/) !== null;
+ const isEmptyOrSpaces = (str) => str === null || str === '' || str === '\n' || str === '\r\n' || str.match(/^[\r\n\t]* *$/) !== null;
61
62
// Replace the tabsType input with tabsAligment
63
for (const path of htmlFiles) {
0 commit comments