Skip to content

Commit 995aa9b

Browse files
authored
Update form-timepicker.js
1 parent 2607b49 commit 995aa9b

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

src/components/form-timepicker/form-timepicker.js

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ const propsMixin = {
175175
menuClass: {
176176
type: [String, Object, Array],
177177
default: null
178-
},
178+
}
179179
}
180180
}
181181

@@ -319,13 +319,10 @@ export const BFormTimepicker = /*#__PURE__*/ Vue.extend({
319319
},
320320
// Render funtion helpers
321321
defaultButtonFn(scope) {
322-
return this.$createElement(
323-
scope.isHovered || scope.hasFocus ? BIconClockFill : BIconClock,
324-
{
325-
props: { scale: 1.25 },
326-
attrs: { 'aria-hidden': 'true' }
327-
}
328-
)
322+
return this.$createElement(scope.isHovered || scope.hasFocus ? BIconClockFill : BIconClock, {
323+
props: { scale: 1.25 },
324+
attrs: { 'aria-hidden': 'true' }
325+
})
329326
}
330327
},
331328
render(h) {

0 commit comments

Comments
 (0)