Skip to content

Commit

Permalink
core: rename Table Result with Table View
Browse files Browse the repository at this point in the history
  • Loading branch information
imedina committed Dec 19, 2024
1 parent fc043d0 commit 4bbed77
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/webcomponents/clinical/clinical-analysis-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export default class ClinicalAnalysisBrowser extends LitElement {
views: [
{
id: "table-tab",
name: "Table result",
name: "Table View",
icon: "fa fa-table",
active: true,
render: params => html `
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/cohort/cohort-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default class CohortBrowser extends LitElement {
views: [
{
id: "table-tab",
name: "Table result",
name: "Table View",
icon: "fa fa-table",
active: true,
render: params => html `
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/disease-panel/disease-panel-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export default class DiseasePanelBrowser extends LitElement {
views: [
{
id: "table-tab",
name: "Table result",
name: "Table View",
icon: "fa fa-table",
active: true,
render: params => html`
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/family/family-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export default class FamilyBrowser extends LitElement {
views: [
{
id: "table-tab",
name: "Table result",
name: "Table View",
icon: "fa fa-table",
active: true,
render: params => html `
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/file/file-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export default class FileBrowser extends LitElement {
views: [
{
id: "table-tab-file",
name: "Table result",
name: "Table View",
icon: "fa fa-table",
active: true,
render: params => html`
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/individual/individual-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default class IndividualBrowser extends LitElement {
views: [
{
id: "table-tab",
name: "Table result",
name: "Table View",
icon: "fa fa-table",
active: true,
render: params => html`
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/job/job-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default class JobBrowser extends LitElement {
views: [
{
id: "table-tab",
name: "Table result",
name: "Table View",
icon: "fa fa-table",
active: true,
render: params => html`
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/note/note-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export default class NoteBrowser extends LitElement {
views: [
{
id: "table-tab",
name: "Table result",
name: "Table View",
icon: "fa fa-table",
active: true,
render: params => {
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/sample/sample-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export default class SampleBrowser extends LitElement {
views: [
{
id: "table-tab",
name: "Table result",
name: "Table View",
icon: "fa fa-table",
active: true,
render: params => html`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ class VariantInterpreterBrowserTemplate extends LitElement {
<div class="flex-grow-1">
<!-- View toolbar -->
<div class="d-flex gap-1 mb-3" role="toolbar" aria-label="toolbar">
${this.renderViewButton("table", "Table Result", "table")}
${this.renderViewButton("table", "Table View", "table")}
${!this.settings?.hideGenomeBrowser ? this.renderViewButton("genome-browser", "Genome Browser", "dna") : nothing}
</div>
<!-- Active filters -->
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/variant/variant-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export default class VariantBrowser extends LitElement {
class="${`btn btn-success ${this.activeTab === "table-tab" ? "active" : ""}`}"
@click="${() => this.changeView("table-tab")}">
<i class="fa fa-table me-2"></i>
<strong>Table Result</strong>
<strong>Table View</strong>
</button>
<button
type="button"
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/workflow/workflow-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export default class WorkflowBrowser extends LitElement {
views: [
{
id: "table-tab",
name: "Table result",
name: "Table View",
icon: "fa fa-table",
active: true,
render: params => html`
Expand Down

0 comments on commit 4bbed77

Please sign in to comment.