disable optimization request btn if already sent
This commit is contained in:
parent
77a0a42606
commit
c73b9d671b
7 changed files with 114 additions and 81 deletions
|
|
@ -21,15 +21,22 @@
|
|||
class="order-last | text-sm text-primary font-medium"
|
||||
>
|
||||
{{ images[0].comments.length }} commentaire{{
|
||||
images[0].comments.length > 1 ? "s" : ""
|
||||
images[0].comments.length > 1 ? 's' : ''
|
||||
}}
|
||||
</footer>
|
||||
<div class="btn btn--xs btn--dtl | mt-16" v-if="isDesignToLightStep(step)" data-icon="leaf" lang="en">Design to Light</div>
|
||||
<div
|
||||
class="btn btn--xs btn--dtl | mt-16"
|
||||
v-if="isDesignToLightStep(step)"
|
||||
data-icon="leaf"
|
||||
lang="en"
|
||||
>
|
||||
Design to Light
|
||||
</div>
|
||||
</article>
|
||||
</template>
|
||||
<script setup>
|
||||
import DateTime from "./DateTime.vue";
|
||||
import { useDesignToLightStore } from "../../../stores/designToLight";
|
||||
import DateTime from './DateTime.vue';
|
||||
import { useDesignToLightStore } from '../../../stores/designToLight';
|
||||
|
||||
const { images, step, uri } = defineProps({
|
||||
images: Array,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue