2
0
mirror of https://github.com/tenrok/vue-cron-editor-bootstrap.git synced 2026-06-05 16:52:25 +03:00

Merge branch 'layout_fix'

This commit is contained in:
Alex Freitas
2020-05-22 14:18:33 -03:00
9 changed files with 30 additions and 28 deletions
+3 -1
View File
@@ -1,6 +1,8 @@
name: Node.js Package
on: [push]
on:
release:
types: [created]
jobs:
build:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+7 -4
View File
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "vue-cron-editor-bootstrap",
"version": "0.1.5",
"version": "0.1.7",
"private": false,
"main": "dist/vueCronEditorBootstrap.umd.js",
"module": "dist/vueCronEditorBootstrap.esm.js",
+6 -12
View File
@@ -6,7 +6,7 @@
<b-form-input
type="number"
v-model="editorData.minuteInterval"
class="small-input"
v-bind:style="{ width: '50px' }"
/>
<label class="mr-sm-2 ml-sm-2">{{ _$t("mminutes") }}</label>
</b-form>
@@ -19,7 +19,7 @@
<b-form-input
type="number"
v-model="editorData.hourInterval"
class="small-input"
v-bind:style="{ width: '50px' }"
/>
<label class="mr-sm-2 ml-sm-2">{{
_$t("hoursOnMinute")
@@ -29,7 +29,7 @@
max="59"
min="0"
v-model="editorData.minutes"
class="small-input"
v-bind:style="{ width: '50px' }"
/>
</b-form>
</b-col>
@@ -43,7 +43,7 @@
<b-form-input
type="number"
v-model="editorData.dayInterval"
class="small-input"
v-bind:style="{ width: '50px' }"
/>
<label class="mr-sm-2 ml-sm-2">{{
_$t("daysAt")
@@ -120,7 +120,7 @@
<b-form-input
type="number"
v-model="editorData.day"
class="small-input"
v-bind:style="{ width: '50px' }"
/>
<label class="mr-sm-2 ml-sm-2">{{
_$t("dayOfEvery")
@@ -128,7 +128,7 @@
<b-form-input
type="number"
v-model="editorData.monthInterval"
class="small-input"
v-bind:style="{ width: '50px' }"
/><label class="mr-sm-2 ml-sm-2">{{
_$t("monthsAt")
}}</label>
@@ -231,9 +231,3 @@ export default {
}
};
</script>
<style lang="scss">
.form-inline .form-control.small-input {
width: 50px;
}
</style>