chore(animations): make sure host-prop animation deprecation is correctly emitted
Closes #10581
This commit is contained in:

committed by
Alex Rickabaugh

parent
b2b47177cd
commit
0b08dd8674
@ -441,8 +441,8 @@ export class CompileDirectiveMetadata implements CompileMetadataWithIdentifier {
|
||||
hostProperties[matches[1]] = value;
|
||||
} else if (isPresent(matches[2])) {
|
||||
hostListeners[matches[2]] = value;
|
||||
} else if (isPresent(matches[3])) {
|
||||
hostProperties[matches[3]] = value;
|
||||
} else if (isPresent(matches[3])) { // DEPRECATED: remove this if statement post RC5
|
||||
hostProperties['@' + matches[3]] = value;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user