Skip to content

Commit b01003f

Browse files
committed
fix: update button target attributes to open in new tab
1 parent 5e48a8c commit b01003f

File tree

4 files changed

+3
-36
lines changed

4 files changed

+3
-36
lines changed

README.md

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -150,29 +150,3 @@ please see our [CONTRIBUTING.md](CONTRIBUTING.md) guide.**
150150
- 💬 [Discord Community](https://discord.com/invite/pbt9m98wnU)
151151
- 🐛
152152
[Issue Tracker](https://github.com/iExecBlockchainComputing/documentation/issues)
153-
154-
## TODO
155-
156-
- Add link to the new explorer feature Asset_Types in the guide =>
157-
`handle-schemas-dataset-types`
158-
- Add link to remix for deploying whitelist
159-
- Explorer l'intégration de codeSpace
160-
- Add a Development workflow section (1 - ProtectData, 2- ...)
161-
- Update context7 when doc will be deployed (Martin)
162-
- Check theGraph Images with design Team
163-
- Update the Dune Dashboard to the final version
164-
- Add new section in `iexec-explorer.md` file to talk about: available chain on
165-
the UI + SRLC/RLC on account section feature of the protocol
166-
- check glossary
167-
- migrate pay-per-task page into a guide
168-
- check pages (introduction & getting-started) for use-iapp guide
169-
- Schema what is iexec to do and implement
170-
- Give recap of Workerpool address fo chains
171-
- Talk about ENS on Bellecour(it's not supported on arbitrum)
172-
- Talk about encrypting results in use-iapp
173-
- Refactor "advanced" section in build-iapp
174-
- Talk about encrypting results in use-iapp (link in outputs, iapp generator...)
175-
- Rework src\get-started\protocol\oracle.md (transfer to guide or rewrite)
176-
- Improve Guide in build-iapp section - be more clear for builder ( how to
177-
process process protectedData, clarify input-output guide)
178-
- Add illustration in the different pages

src/components/ProjectCard.vue

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
variant="secondary"
4242
:href="buttonHref"
4343
:disabled="buttonDisabled"
44-
:target="buttonTarget"
44+
target="_blank"
4545
:rel="buttonRel"
4646
class="flex-1"
4747
>
@@ -68,7 +68,7 @@
6868
variant="secondary"
6969
:href="buttonHref"
7070
:disabled="buttonDisabled"
71-
:target="buttonTarget"
71+
v-bind="buttonHref ? { target: '_blank' } : {}"
7272
:rel="buttonRel"
7373
class="w-full"
7474
>
@@ -95,8 +95,7 @@ interface Props {
9595
statusLabel: string;
9696
buttonLabel: string;
9797
buttonIcon: string;
98-
buttonHref?: string;
99-
buttonTarget?: string;
98+
buttonHref: string;
10099
buttonRel?: string;
101100
buttonDisabled?: boolean;
102101
githubUrl?: string;

src/get-started/tooling-and-explorers/bridge.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ networks:
2929
button-label="Access Bridge"
3030
button-icon="mdi:bridge"
3131
button-href="https://bridge-bellecour.iex.ec/"
32-
button-target="_blank"
3332
button-rel="noreferrer"
3433
/>
3534

@@ -42,7 +41,6 @@ networks:
4241
button-label="Access Bridge"
4342
button-icon="mdi:bridge"
4443
button-href="https://stargate.finance/bridge"
45-
button-target="_blank"
4644
button-rel="noreferrer"
4745
/>
4846
</CardGrid>

src/get-started/tooling-and-explorers/subgraph-explorer.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ protocol.
5656
status-label="Live"
5757
button-label="Explore Subgraph"
5858
button-href="https://thegraph.com/explorer/subgraphs/B1comLe9SANBLrjdnoNTJSubbeC7cY7EoNu6zD82HeKy?view=Query&chain=arbitrum-one"
59-
button-target="_blank"
6059
button-rel="noreferrer"
6160
/>
6261

@@ -68,7 +67,6 @@ protocol.
6867
status-label="Live"
6968
button-label="Explore Subgraph"
7069
button-href="https://thegraph.com/explorer/subgraphs/Ep5zs5zVr4tDiVuQJepUu51e5eWYJpka624X4DMBxe3u?view=Query&chain=arbitrum-one"
71-
button-target="_blank"
7270
button-rel="noreferrer"
7371
/>
7472

@@ -80,7 +78,6 @@ protocol.
8078
status-label="Live"
8179
button-label="Explore Subgraph"
8280
button-href="https://thegraph.bellecour.iex.ec/subgraphs/name/bellecour/poco-v5/graphql?query=query+MyQuery+%7B%0A++apps+%7B%0A++++name%0A++++id%0A++++owner+%7B%0A++++++id%0A++++%7D%0A++%7D%0A%7D"
83-
button-target="_blank"
8481
button-rel="noreferrer"
8582
/>
8683

@@ -92,7 +89,6 @@ protocol.
9289
status-label="Live"
9390
button-label="Explore Subgraph"
9491
button-href="https://thegraph.iex.ec/subgraphs/name/bellecour/dataProtector-v2/graphql?query=query+MyQuery+%7B%0A++protectedDatas+%7B%0A++++id%0A++++name%0A++++owner+%7B%0A++++++id%0A++++%7D%0A++%7D%0A%7D"
95-
button-target="_blank"
9692
button-rel="noreferrer"
9793
/>
9894

0 commit comments

Comments
 (0)