mirror of
https://github.com/tenrok/vue-cron-editor-bootstrap.git
synced 2026-06-20 20:10:34 +03:00
Merge branch 'layout_fix'
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
name: Node.js Package
|
name: Node.js Package
|
||||||
|
|
||||||
on: [push]
|
on:
|
||||||
|
release:
|
||||||
|
types: [created]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|||||||
+7
-4
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+7
-4
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+3
-3
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "vue-cron-editor-bootstrap",
|
"name": "vue-cron-editor-bootstrap",
|
||||||
"version": "0.1.5",
|
"version": "0.1.7",
|
||||||
"private": false,
|
"private": false,
|
||||||
"main": "dist/vueCronEditorBootstrap.umd.js",
|
"main": "dist/vueCronEditorBootstrap.umd.js",
|
||||||
"module": "dist/vueCronEditorBootstrap.esm.js",
|
"module": "dist/vueCronEditorBootstrap.esm.js",
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
<b-form-input
|
<b-form-input
|
||||||
type="number"
|
type="number"
|
||||||
v-model="editorData.minuteInterval"
|
v-model="editorData.minuteInterval"
|
||||||
class="small-input"
|
v-bind:style="{ width: '50px' }"
|
||||||
/>
|
/>
|
||||||
<label class="mr-sm-2 ml-sm-2">{{ _$t("mminutes") }}</label>
|
<label class="mr-sm-2 ml-sm-2">{{ _$t("mminutes") }}</label>
|
||||||
</b-form>
|
</b-form>
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
<b-form-input
|
<b-form-input
|
||||||
type="number"
|
type="number"
|
||||||
v-model="editorData.hourInterval"
|
v-model="editorData.hourInterval"
|
||||||
class="small-input"
|
v-bind:style="{ width: '50px' }"
|
||||||
/>
|
/>
|
||||||
<label class="mr-sm-2 ml-sm-2">{{
|
<label class="mr-sm-2 ml-sm-2">{{
|
||||||
_$t("hoursOnMinute")
|
_$t("hoursOnMinute")
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
max="59"
|
max="59"
|
||||||
min="0"
|
min="0"
|
||||||
v-model="editorData.minutes"
|
v-model="editorData.minutes"
|
||||||
class="small-input"
|
v-bind:style="{ width: '50px' }"
|
||||||
/>
|
/>
|
||||||
</b-form>
|
</b-form>
|
||||||
</b-col>
|
</b-col>
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
<b-form-input
|
<b-form-input
|
||||||
type="number"
|
type="number"
|
||||||
v-model="editorData.dayInterval"
|
v-model="editorData.dayInterval"
|
||||||
class="small-input"
|
v-bind:style="{ width: '50px' }"
|
||||||
/>
|
/>
|
||||||
<label class="mr-sm-2 ml-sm-2">{{
|
<label class="mr-sm-2 ml-sm-2">{{
|
||||||
_$t("daysAt")
|
_$t("daysAt")
|
||||||
@@ -120,7 +120,7 @@
|
|||||||
<b-form-input
|
<b-form-input
|
||||||
type="number"
|
type="number"
|
||||||
v-model="editorData.day"
|
v-model="editorData.day"
|
||||||
class="small-input"
|
v-bind:style="{ width: '50px' }"
|
||||||
/>
|
/>
|
||||||
<label class="mr-sm-2 ml-sm-2">{{
|
<label class="mr-sm-2 ml-sm-2">{{
|
||||||
_$t("dayOfEvery")
|
_$t("dayOfEvery")
|
||||||
@@ -128,7 +128,7 @@
|
|||||||
<b-form-input
|
<b-form-input
|
||||||
type="number"
|
type="number"
|
||||||
v-model="editorData.monthInterval"
|
v-model="editorData.monthInterval"
|
||||||
class="small-input"
|
v-bind:style="{ width: '50px' }"
|
||||||
/><label class="mr-sm-2 ml-sm-2">{{
|
/><label class="mr-sm-2 ml-sm-2">{{
|
||||||
_$t("monthsAt")
|
_$t("monthsAt")
|
||||||
}}</label>
|
}}</label>
|
||||||
@@ -231,9 +231,3 @@ export default {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
|
||||||
.form-inline .form-control.small-input {
|
|
||||||
width: 50px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|||||||
Reference in New Issue
Block a user