diff options
| author | Ali Rahimi <alirahimi818@gmail.com> | 2024-01-02 11:32:21 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-02 11:32:21 +0300 |
| commit | c76199514a62c921901b2b2a1c4dd3f93ff8df2a (patch) | |
| tree | ef82233fb8e7035be22c21a7375be6d0fb1c8868 /web/html/xui/form/inbound.html | |
| parent | 31e9734414f084b9d1725d5ae9be46d3720ac122 (diff) | |
added Jalalian datepicker (shamsi) (#1460)
* added datepicker option in setting page
jalalian datepicker component was added
translate files for datepicker updated
* dark mode bug fixed
Diffstat (limited to 'web/html/xui/form/inbound.html')
| -rw-r--r-- | web/html/xui/form/inbound.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/web/html/xui/form/inbound.html b/web/html/xui/form/inbound.html index 6f0480c3..5da8ec56 100644 --- a/web/html/xui/form/inbound.html +++ b/web/html/xui/form/inbound.html @@ -54,9 +54,11 @@ <a-icon type="question-circle"></a-icon> </a-tooltip> </template> - <a-date-picker :show-time="{ format: 'HH:mm:ss' }" format="YYYY-MM-DD HH:mm:ss" + <a-date-picker v-if="datepicker == 'gregorian'" :show-time="{ format: 'HH:mm:ss' }" format="YYYY-MM-DD HH:mm:ss" :dropdown-class-name="themeSwitcher.currentTheme" v-model="dbInbound._expiryTime"></a-date-picker> + <persian-datepicker v-else :dropdown-class-name="themeSwitcher.currentTheme" + value="dbInbound._expiryTime" v-model="dbInbound._expiryTime"></persian-datepicker> </a-form-item> </a-form> |
