mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 08:09:32 +08:00
chore(): update stencil (#16460)
This commit is contained in:
@ -61,7 +61,7 @@ export class Label implements ComponentInterface {
|
||||
const position = this.position;
|
||||
this.ionStyle.emit({
|
||||
'label': true,
|
||||
[`label-${position}`]: !!position
|
||||
[`label-${position}`]: position !== undefined
|
||||
});
|
||||
}
|
||||
|
||||
@ -70,7 +70,7 @@ export class Label implements ComponentInterface {
|
||||
return {
|
||||
class: {
|
||||
...createColorClasses(this.color),
|
||||
[`label-${position}`]: !!position,
|
||||
[`label-${position}`]: position !== undefined,
|
||||
[`label-no-animate`]: (this.noAnimate)
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user