mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
fix(all): updated tslint rules to latest
This commit is contained in:
@ -407,7 +407,7 @@ export class PickerColumnCmp {
|
||||
|
||||
if (col.prefix) {
|
||||
results.push(
|
||||
<div class="picker-prefix" style={{width: col.prefixWidth!}}>
|
||||
<div class="picker-prefix" style={{ width: col.prefixWidth! }}>
|
||||
{col.prefix}
|
||||
</div>
|
||||
);
|
||||
@ -426,10 +426,10 @@ export class PickerColumnCmp {
|
||||
threshold={0}
|
||||
attachTo="parent"
|
||||
></ion-gesture>,
|
||||
<div class="picker-opts" style={{maxWidth: col.optionsWidth!}}>
|
||||
<div class="picker-opts" style={{ maxWidth: col.optionsWidth! }}>
|
||||
{options.map((o, index) =>
|
||||
<button
|
||||
class={{'picker-opt': true, 'picker-opt-disabled': !!o.disabled}}
|
||||
class={{ 'picker-opt': true, 'picker-opt-disabled': !!o.disabled }}
|
||||
disable-activated
|
||||
onClick={(event) => this.optClick(event, index)}>
|
||||
{o.text}
|
||||
@ -440,7 +440,7 @@ export class PickerColumnCmp {
|
||||
|
||||
if (col.suffix) {
|
||||
results.push(
|
||||
<div class="picker-suffix" style={{width: col.suffixWidth!}}>
|
||||
<div class="picker-suffix" style={{ width: col.suffixWidth! }}>
|
||||
{col.suffix}
|
||||
</div>
|
||||
);
|
||||
|
Reference in New Issue
Block a user