diff --git a/frontend/src/component/p-photo-list.vue b/frontend/src/component/p-photo-list.vue index 730a30c3a..871090818 100644 --- a/frontend/src/component/p-photo-list.vue +++ b/frontend/src/component/p-photo-list.vue @@ -19,7 +19,7 @@ {{ props.item.PhotoTitle }} - + @@ -27,8 +27,8 @@ {{ props.item.getLocation() }} - {{ props.item.CameraMake }} {{ props.item.CameraModel }} - {{ props.item.TakenAt | luxon:format('dd/MM/yyyy hh:mm:ss') }} + {{ props.item.CameraMake }} {{ props.item.CameraModel }} + {{ props.item.TakenAt | luxon:format('dd/MM/yyyy') }} @@ -56,9 +56,9 @@ 'listColumns': [ {text: '', value: '', align: 'center', sortable: false, class: 'p-col-select'}, {text: this.$gettext('Title'), value: 'PhotoTitle'}, - {text: this.$gettext('Location'), value: 'LocLabel'}, - {text: this.$gettext('Camera'), value: 'CameraModel'}, - {text: this.$gettext('Taken At'), value: 'TakenAt'}, + {text: this.$gettext('Location'), class: 'hidden-xs-only', value: 'LocLabel'}, + {text: this.$gettext('Camera'), class: 'hidden-sm-and-down', value: 'CameraModel'}, + {text: this.$gettext('Taken'), value: 'TakenAt'}, {text: this.$gettext('Favorite'), value: 'PhotoFavorite', align: 'left'}, ], };