dpsoft-official / nova-persian-date

Nova Persian Date field
8 stars 3 forks source link

Display a dash (—) in case of null value #2

Closed FaridAghili closed 1 year ago

FaridAghili commented 3 years ago

به نظرم بهتره فارسی بنویسم!

image

همونطور که در تصویر می‌بینید، در صورتی که مقدار فیلد برابر با نال باشه، هیچ چیزی نمایش داده نمی‌شه، اما فیلدهای پیشفرض نوا برای مقدار نال یه خط تیره نشون می‌دن.

اگه امکانش هست این رو اضافه کنید تا همخوانی بیشتری با فیلدهای پیشفرض داشته باشه. ممنون

FaridAghili commented 3 years ago

https://github.com/dpsoft-official/nova-persian-date/blob/ff54e9b9225713b71be276e2525f5dbb44da820e/resources/js/components/IndexField.vue#L12-L14

فکر می‌کنم مربوط به این قسمت باشه

persianDate() {
    if (this.field.value) {
        return jMoment(this.field.value).format(this.field.format || 'jYYYY/jMM/jDD');
    }

+    return '—';
}
SadeghPM commented 3 years ago

تشکر اضافه میشه👍

On Fri, May 28, 2021, 3:25 AM Farid Aghili @.***> wrote:

https://github.com/dpsoft-official/nova-persian-date/blob/ff54e9b9225713b71be276e2525f5dbb44da820e/resources/js/components/IndexField.vue#L12-L14

فکر می‌کنم مربوط به این قسمت باشه

persianDate() {

if (this.field.value) {

    return jMoment(this.field.value).format(this.field.format || 'jYYYY/jMM/jDD');

}
  • return '—';

}

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/dpsoft-official/nova-persian-date/issues/2#issuecomment-849994122, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACG6FKCY62WK3J4AD5F6J73TP3EWHANCNFSM45VIAQ3A .