mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
fix(ux): show dbPath in the DatabaseSelector
- set lighter colour for disabled input - if readonly not tabable
This commit is contained in:
parent
708d172f7c
commit
f484c2b4aa
@ -72,6 +72,7 @@
|
|||||||
v-for="(file, i) in files"
|
v-for="(file, i) in files"
|
||||||
:key="file.dbPath"
|
:key="file.dbPath"
|
||||||
@click="selectFile(file)"
|
@click="selectFile(file)"
|
||||||
|
:title="t`${file.companyName} stored at ${file.dbPath}`"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="
|
class="
|
||||||
@ -91,19 +92,24 @@
|
|||||||
{{ i + 1 }}
|
{{ i + 1 }}
|
||||||
</div>
|
</div>
|
||||||
<div class="w-full">
|
<div class="w-full">
|
||||||
<p class="font-medium">
|
<div class="flex justify-between overflow-x-auto items-baseline">
|
||||||
|
<h2 class="font-medium">
|
||||||
{{ file.companyName }}
|
{{ file.companyName }}
|
||||||
</p>
|
</h2>
|
||||||
<div
|
<p class="whitespace-nowrap text-sm text-gray-600">
|
||||||
class="text-sm text-gray-600 flex justify-between overflow-x-auto"
|
|
||||||
>
|
|
||||||
<p class="whitespace-nowrap me-2">
|
|
||||||
{{ formatDate(file.modified) }}
|
{{ formatDate(file.modified) }}
|
||||||
</p>
|
</p>
|
||||||
<p class="text-end" v-if="fyo.store.isDevelopment">
|
|
||||||
{{ file.dbPath }}
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
<p
|
||||||
|
class="
|
||||||
|
text-sm text-gray-600
|
||||||
|
overflow-x-auto
|
||||||
|
no-scrollbar
|
||||||
|
whitespace-nowrap
|
||||||
|
"
|
||||||
|
>
|
||||||
|
{{ truncate(file.dbPath) }}
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<button
|
<button
|
||||||
class="
|
class="
|
||||||
@ -244,6 +250,13 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
truncate(value) {
|
||||||
|
if (value.length < 72) {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return '...' + value.slice(value.length - 72);
|
||||||
|
},
|
||||||
formatDate(isoDate) {
|
formatDate(isoDate) {
|
||||||
return DateTime.fromISO(isoDate).toRelative();
|
return DateTime.fromISO(isoDate).toRelative();
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user