Skip to content

Commit

Permalink
TheSettings: Move to DateString component (#655)
Browse files Browse the repository at this point in the history
Forgot to add to last commit...
  • Loading branch information
stefandesu committed Dec 15, 2021
1 parent e6e6d0b commit 8d0925c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/TheSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@
</span>
<span v-if="config.buildInfo.buildDate">
{{ $t("settings.buildDate") }}: {{ dateToString(config.buildInfo.buildDate) }}
{{ $t("settings.buildDate") }}: <date-string :date="config.buildInfo.buildDate" />
</span>
<br>
<span>
Expand All @@ -410,6 +410,7 @@
<script>
import _ from "lodash"
import RegistryInfo from "./RegistryInfo.vue"
import DateString from "./DateString.vue"
import { cdk } from "cocoda-sdk"
// Import mixins
Expand All @@ -423,7 +424,7 @@ import { getItem, loadConcepts } from "@/items"
*/
export default {
name: "TheSettings",
components: { RegistryInfo },
components: { RegistryInfo, DateString },
mixins: [auth, objects, computed],
props: {
tab: {
Expand Down

0 comments on commit 8d0925c

Please sign in to comment.