Update various icon names for oruga compatibility

This commit is contained in:
Lance Edgar 2024-04-28 18:49:11 -05:00
parent 34878f9293
commit b3784dcc4a
11 changed files with 29 additions and 29 deletions

View file

@ -511,7 +511,7 @@
<b-button type="is-primary" <b-button type="is-primary"
@click="showFeedback()" @click="showFeedback()"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-comment"> icon-left="comment">
Feedback Feedback
</b-button> </b-button>
</div> </div>

View file

@ -9,7 +9,7 @@
<b-button type="is-primary" <b-button type="is-primary"
:disabled="refreshResultsButtonDisabled" :disabled="refreshResultsButtonDisabled"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-redo" icon-left="redo"
@click="refreshResults()"> @click="refreshResults()">
{{ refreshResultsButtonText }} {{ refreshResultsButtonText }}
</b-button> </b-button>

View file

@ -50,12 +50,12 @@
<b-button tag="a" <b-button tag="a"
href="${master.get_action_url('download_worksheet', batch)}" href="${master.get_action_url('download_worksheet', batch)}"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-download"> icon-left="download">
Download Worksheet Download Worksheet
</b-button> </b-button>
<b-button type="is-primary" <b-button type="is-primary"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-upload" icon-left="upload"
@click="$emit('show-upload')"> @click="$emit('show-upload')">
Upload Worksheet Upload Worksheet
</b-button> </b-button>
@ -185,7 +185,7 @@
<b-button type="is-primary" <b-button type="is-primary"
@click="submitUpload()" @click="submitUpload()"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-upload" icon-left="upload"
:disabled="uploadButtonDisabled"> :disabled="uploadButtonDisabled">
{{ uploadButtonText }} {{ uploadButtonText }}
</b-button> </b-button>

View file

@ -27,18 +27,18 @@
@click="submitOrder()" @click="submitOrder()"
:disabled="submittingOrder" :disabled="submittingOrder"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-upload"> icon-left="upload">
{{ submittingOrder ? "Working, please wait..." : "Submit this Order" }} {{ submittingOrder ? "Working, please wait..." : "Submit this Order" }}
</b-button> </b-button>
<b-button @click="startOverEntirely()" <b-button @click="startOverEntirely()"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-redo"> icon-left="redo">
Start Over Entirely Start Over Entirely
</b-button> </b-button>
<b-button @click="cancelOrder()" <b-button @click="cancelOrder()"
type="is-danger" type="is-danger"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-trash"> icon-left="trash">
Cancel this Order Cancel this Order
</b-button> </b-button>
</div> </div>
@ -493,14 +493,14 @@
<div class="buttons"> <div class="buttons">
<b-button type="is-primary" <b-button type="is-primary"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-plus" icon-left="plus"
@click="showAddItemDialog()"> @click="showAddItemDialog()">
Add Item Add Item
</b-button> </b-button>
% if allow_past_item_reorder: % if allow_past_item_reorder:
<b-button v-if="contactUUID" <b-button v-if="contactUUID"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-plus" icon-left="plus"
@click="showAddPastItem()"> @click="showAddPastItem()">
Add Past Item Add Past Item
</b-button> </b-button>
@ -1013,12 +1013,12 @@
{{ props.row.vendor_name }} {{ props.row.vendor_name }}
</b-table-column> </b-table-column>
<template slot="empty"> <template #empty>
<div class="content has-text-grey has-text-centered"> <div class="content has-text-grey has-text-centered">
<p> <p>
<b-icon <b-icon
pack="fas" pack="fas"
icon="fas fa-sad-tear" icon="sad-tear"
size="is-large"> size="is-large">
</b-icon> </b-icon>
</p> </p>

View file

@ -177,7 +177,7 @@
<p> <p>
<b-icon <b-icon
pack="fas" pack="fas"
icon="fas fa-sad-tear" icon="sad-tear"
size="is-large"> size="is-large">
</b-icon> </b-icon>
</p> </p>

View file

@ -58,13 +58,13 @@
Edit Edit
</a> </a>
</${b}-table-column> </${b}-table-column>
<template slot="empty"> <template #empty>
<section class="section"> <section class="section">
<div class="content has-text-grey has-text-centered"> <div class="content has-text-grey has-text-centered">
<p> <p>
<b-icon <b-icon
pack="fas" pack="fas"
icon="fas fa-sad-tear" icon="sad-tear"
size="is-large"> size="is-large">
</b-icon> </b-icon>
</p> </p>

View file

@ -183,7 +183,7 @@
<once-button type="is-primary" <once-button type="is-primary"
@click="downloadResultsSubmit()" @click="downloadResultsSubmit()"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-download" icon-left="download"
:disabled="!downloadResultsFieldsIncluded.length" :disabled="!downloadResultsFieldsIncluded.length"
text="Download Results"> text="Download Results">
</once-button> </once-button>
@ -197,7 +197,7 @@
% if master.has_rows and master.results_rows_downloadable and master.has_perm('download_results_rows'): % if master.has_rows and master.results_rows_downloadable and master.has_perm('download_results_rows'):
<b-button type="is-primary" <b-button type="is-primary"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-download" icon-left="download"
@click="downloadResultsRows()" @click="downloadResultsRows()"
:disabled="downloadResultsRowsButtonDisabled"> :disabled="downloadResultsRowsButtonDisabled">
{{ downloadResultsRowsButtonText }} {{ downloadResultsRowsButtonText }}

View file

@ -28,7 +28,7 @@
<div> <div>
<b-button type="is-primary" <b-button type="is-primary"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-play" icon-left="play"
@click="startScanning()"> @click="startScanning()">
Start Scanning Start Scanning
</b-button> </b-button>
@ -111,7 +111,7 @@
<div class="buttons"> <div class="buttons">
<b-button type="is-primary" <b-button type="is-primary"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-save" icon-left="save"
@click="saveCurrentRow()"> @click="saveCurrentRow()">
Save Save
</b-button> </b-button>

View file

@ -157,12 +157,12 @@
</a> </a>
</b-table-column> </b-table-column>
<template slot="empty"> <template #empty>
<div class="content has-text-grey has-text-centered"> <div class="content has-text-grey has-text-centered">
<p> <p>
<b-icon <b-icon
pack="fas" pack="fas"
icon="fas fa-sad-tear" icon="sad-tear"
size="is-large"> size="is-large">
</b-icon> </b-icon>
</p> </p>

View file

@ -7,7 +7,7 @@
% if master.has_perm('collect_wild_uoms'): % if master.has_perm('collect_wild_uoms'):
<b-button type="is-primary" <b-button type="is-primary"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-shopping-basket" icon-left="shopping-basket"
@click="showingCollectWildDialog = true"> @click="showingCollectWildDialog = true">
Collect from the Wild Collect from the Wild
</b-button> </b-button>

View file

@ -24,7 +24,7 @@
${h.csrf_token(request)} ${h.csrf_token(request)}
<b-button type="is-primary" <b-button type="is-primary"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-arrow-right" icon-left="arrow-right"
@click="receive()" @click="receive()"
:disabled="receiveButtonDisabled"> :disabled="receiveButtonDisabled">
{{ receiveButtonText }} {{ receiveButtonText }}
@ -41,7 +41,7 @@
${h.csrf_token(request)} ${h.csrf_token(request)}
<b-button type="is-primary" <b-button type="is-primary"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-arrow-right" icon-left="arrow-right"
@click="awaitEstimate()" @click="awaitEstimate()"
:disabled="awaitEstimateButtonDisabled"> :disabled="awaitEstimateButtonDisabled">
{{ awaitEstimateButtonText }} {{ awaitEstimateButtonText }}
@ -58,7 +58,7 @@
${h.csrf_token(request)} ${h.csrf_token(request)}
<b-button type="is-primary" <b-button type="is-primary"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-arrow-right" icon-left="arrow-right"
@click="awaitParts()" @click="awaitParts()"
:disabled="awaitPartsButtonDisabled"> :disabled="awaitPartsButtonDisabled">
{{ awaitPartsButtonText }} {{ awaitPartsButtonText }}
@ -75,7 +75,7 @@
${h.csrf_token(request)} ${h.csrf_token(request)}
<b-button type="is-primary" <b-button type="is-primary"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-arrow-right" icon-left="arrow-right"
@click="workOnIt()" @click="workOnIt()"
:disabled="workOnItButtonDisabled"> :disabled="workOnItButtonDisabled">
{{ workOnItButtonText }} {{ workOnItButtonText }}
@ -92,7 +92,7 @@
${h.csrf_token(request)} ${h.csrf_token(request)}
<b-button type="is-primary" <b-button type="is-primary"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-arrow-right" icon-left="arrow-right"
@click="release()" @click="release()"
:disabled="releaseButtonDisabled"> :disabled="releaseButtonDisabled">
{{ releaseButtonText }} {{ releaseButtonText }}
@ -109,7 +109,7 @@
${h.csrf_token(request)} ${h.csrf_token(request)}
<b-button type="is-primary" <b-button type="is-primary"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-arrow-right" icon-left="arrow-right"
@click="deliver()" @click="deliver()"
:disabled="deliverButtonDisabled"> :disabled="deliverButtonDisabled">
{{ deliverButtonText }} {{ deliverButtonText }}
@ -132,7 +132,7 @@
${h.csrf_token(request)} ${h.csrf_token(request)}
<b-button type="is-warning" <b-button type="is-warning"
icon-pack="fas" icon-pack="fas"
icon-left="fas fa-ban" icon-left="ban"
@click="confirmCancel()" @click="confirmCancel()"
:disabled="cancelButtonDisabled"> :disabled="cancelButtonDisabled">
{{ cancelButtonText }} {{ cancelButtonText }}