Skip to content

Commit dc9054c

Browse files
committed
feat: remove link icon from ImageViewer component and update related documentation
1 parent dba9701 commit dc9054c

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

src/components/ImageViewer.vue

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,29 +21,24 @@
2121
rel="noreferrer"
2222
class="text-primary hover:text-primary2 inline-flex items-center gap-2 no-underline transition-colors duration-200"
2323
>
24-
<Icon :icon="linkIcon" height="16" />
2524
{{ caption }}
2625
</a>
2726
</p>
2827
</div>
2928
</template>
3029

3130
<script setup lang="ts">
32-
import { Icon } from '@iconify/vue';
33-
3431
interface Props {
3532
imageUrl: string;
3633
imageAlt: string;
3734
linkUrl: string;
3835
caption?: string;
39-
linkIcon?: string;
4036
centered?: boolean;
4137
maxWidth?: string;
4238
borderRadius?: string;
4339
}
4440
4541
withDefaults(defineProps<Props>(), {
46-
linkIcon: 'mdi:external-link',
4742
centered: true,
4843
maxWidth: '800px',
4944
borderRadius: '8px',

src/overview/tooling-and-explorers/iexec-explorer.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ explore apps and protectedData—all in one powerful dashboard.
1616
image-alt="iExec Explorer"
1717
link-url="https://explorer.iex.ec/"
1818
caption="🔗 Explore the iExec Protocol"
19-
link-icon="mdi:open-in-new"
2019
/>
2120

2221
## 🎯 What You Can Explore
@@ -69,7 +68,6 @@ explore apps and protectedData—all in one powerful dashboard.
6968
image-alt="Deal View"
7069
link-url="https://explorer.iex.ec/bellecour/deals"
7170
caption="🔗 Explore Deals on iExec Explorer"
72-
link-icon="mdi:open-in-new"
7371
/>
7472

7573
> **💡 Understanding Deals**: A deal is a coordinated set of stakeholders that
@@ -96,7 +94,6 @@ explore apps and protectedData—all in one powerful dashboard.
9694
image-alt="Task View"
9795
link-url="https://explorer.iex.ec/bellecour/tasks"
9896
caption="🔗 Browse All Tasks"
99-
link-icon="mdi:open-in-new"
10097
/>
10198

10299
Browse and analyze all tasks across the iExec network:
@@ -109,11 +106,10 @@ Browse and analyze all tasks across the iExec network:
109106
### Task Execution Monitoring
110107

111108
<ImageViewer
112-
image-url="/assets/tooling-&-explorers/iexec-explorer/task-details-started.png"
113-
image-alt="Task Started"
109+
image-url="/assets/tooling-&-explorers/iexec-explorer/result-details.png"
110+
image-alt="Result Decryption"
114111
link-url="https://explorer.iex.ec/bellecour/tasks"
115112
caption="🔗 Explore Tasks"
116-
link-icon="mdi:open-in-new"
117113
:centered="true"
118114
max-width="700px"
119115
/>
@@ -123,7 +119,6 @@ Browse and analyze all tasks across the iExec network:
123119
image-alt="Task Completed"
124120
link-url="https://explorer.iex.ec/bellecour/tasks"
125121
caption="🔗 Explore Tasks"
126-
link-icon="mdi:open-in-new"
127122
:centered="true"
128123
max-width="700px"
129124
/>

0 commit comments

Comments
 (0)