Skip to content

Commit

Permalink
gs_index: less samplecorpus
Browse files Browse the repository at this point in the history
  • Loading branch information
parkchamchi committed Oct 18, 2024
1 parent ad0835b commit d020c5c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
10 changes: 6 additions & 4 deletions src/backend/gs_index/src/components/CorpusesView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,11 @@
<p @click="clearCorpuses">[Clear data]</p>
<div v-if="remoteSampleFilenames.length > 0">
<h4>Get a sample:</h4>
<p v-for="(filename, index) in remoteSampleFilenames"
class="sampleLinkP"
@click="getRemoteSampleCorpus(filename)">
{{ filename }}
<p v-for="(filename, index) in remoteSampleFilenames" style="display: inline;">
<span @click="getRemoteSampleCorpus(filename)" class="sampleLinkP">
{{ filename }}
</span>
<span> | </span>
</p>
</div>

Expand All @@ -171,6 +172,7 @@
font-style: italic;
text-decoration: underline;
cursor: pointer;
display: inline;
}

.disabled{
Expand Down
6 changes: 2 additions & 4 deletions src/backend/gs_index/src/components/MiscOptions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,11 @@
min="0"
/>
</div>
</div>
<div class="row">
<div class="col-md-2 d-flex align-items-center">
<button class="btn btn-link mt-3" @click="exportData">Export</button>
<input type="file" @change="importData" class="form-control">
</div>
<div class="col-md-2 d-flex align-items-center">
<input type="file" @change="importData" class="form-control">
<button class="btn btn-link mt-3" @click="exportData">Export</button>
</div>
</div>
</div>
Expand Down
4 changes: 0 additions & 4 deletions src/backend/gs_index/src/sampleCorpuses.json

Large diffs are not rendered by default.

0 comments on commit d020c5c

Please sign in to comment.