Skip to content
Snippets Groups Projects
Verified Commit f1c8b5cd authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Reformat

parent 5c642a98
No related branches found
No related tags found
1 merge request!1148Calendar events and iCal feeds
<template>
<div
class="text-truncate"
:class="{ 'text-decoration-line-through': event.status === 'CANCELLED', 'mx-1': withPadding }"
:class="{
'text-decoration-line-through': event.status === 'CANCELLED',
'mx-1': withPadding,
}"
:style="{ height: '100%' }"
>
<slot name="time" v-bind="$props">
......@@ -31,13 +34,13 @@ import calendarFeedEventBarMixin from "../../mixins/calendarFeedEventBar.js";
export default {
name: "BaseCalendarFeedEventBar",
mixins: [calendarFeedEventBarMixin],
props: {
withPadding: {
required: false,
type: Boolean,
default: true,
props: {
withPadding: {
required: false,
type: Boolean,
default: true,
},
icon: {
icon: {
required: false,
type: String,
default: "",
......@@ -47,6 +50,6 @@ export default {
type: Boolean,
default: false,
},
}
},
};
</script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment