Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/js
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2021-06-17 11:08:33 +0300
committerdartcafe <github@dartcafe.de>2021-06-17 11:08:33 +0300
commit81a7264a5389c15c9cae847771d728a30466e90a (patch)
treecf29f7202c35b2ecf51c49df8e59bbf75387fca9 /src/js
parent90e3b278c5d3cad7d8e008ab0a61b7c6bb8c8a60 (diff)
display day of optionItem without ordinal suffix/prefix
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js')
-rw-r--r--src/js/components/Options/OptionItem.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/components/Options/OptionItem.vue b/src/js/components/Options/OptionItem.vue
index 00446ac3..09d98666 100644
--- a/src/js/components/Options/OptionItem.vue
+++ b/src/js/components/Options/OptionItem.vue
@@ -126,7 +126,7 @@ export default {
return {
from: {
month: from.format('MMM [ \']YY'),
- day: from.format('Do'),
+ day: from.format('D'),
dow: from.format('ddd'),
time: from.format('LT'),
date: from.format('ll'),