Commit cea899c6 authored by Ahmed Awan's avatar Ahmed Awan
Browse files

Fix History dataset database entry overflow

parent 5ad20109
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
    <DatasetProvider :id="dataset.id" v-slot="{ loading, result }" auto-refresh>
        <div v-if="!loading" class="dataset">
            <div class="p-2 details not-loading">
                <div class="summary">
                <div class="summary text-nowrap">
                    <div v-if="stateText" class="mb-1">{{ stateText }}</div>
                    <div v-else-if="result.misc_blurb" class="blurb">
                        <span class="value">{{ result.misc_blurb }}</span>
+6 −0
Original line number Diff line number Diff line
@@ -213,6 +213,12 @@
                    font-weight: bold;
                }
            }
            .dbkey {
                .value {
                    white-space: normal;
                    overflow-wrap: break-word;
                }
            }
            .datatype .value:after {
                content: ",";
                @extend %help-text;