Skip to content

Commit caa041e

Browse files
authored
Merge pull request #250 from OpenTechStrategies/hotfix-add-linebreak-update-about-text
Hotfix to add linebreak update about text
2 parents 937d54b + de0fa97 commit caa041e

File tree

7 files changed

+22
-16
lines changed

7 files changed

+22
-16
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ it is used only to serve the front-end component as bundeled javascript.
1313

1414
The ```front-end``` folder contains a Vue Application, built with Vite and Typescript. The ultimate goal of this application is to provide an alternative UI to the current Arches platform, using a modern web framework like Vue. Currently, the Vue code is bundled by vite into the static directory of the Django Application, which is then served on the user's Arches server.
1515

16-
The application also supports fetching data from external api sources, as seen in the `src/components/ArtistNote.vue` component. This component is designed around a simple API endpoint that is foreign-keyed to the Arches database, linking the arches dataset to an external custom set. The repository for the external API is [here](https://code.librehq.com/ots/arches/archesappremoteserver).
16+
The application also supports fetching data from external api sources, as seen in the `src/components/ArtistNote.vue` component. This component is designed around a simple API endpoint that is foreign-keyed to the Arches database, linking the arches dataset to an external custom set. The repository for the external API is [here](https://github.com/OpenTechStrategies/archesAppRemoteServer).
1717

1818
# Installation Instructions
1919
*Credits to users @apeters and @chiatt*
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"index.html": {
3-
"file": "assets/index-CVuN95tD.js",
3+
"file": "assets/index-B4kQKGQ7.js",
44
"name": "index",
55
"src": "index.html",
66
"isEntry": true,
77
"css": [
8-
"assets/index-Byc3Ge_L.css"
8+
"assets/index-CxkG8-XR.css"
99
]
1010
}
1111
}

archesdataviewer/static/vite_build/assets/index-CVuN95tD.js renamed to archesdataviewer/static/vite_build/assets/index-B4kQKGQ7.js

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

archesdataviewer/static/vite_build/assets/index-Byc3Ge_L.css renamed to archesdataviewer/static/vite_build/assets/index-CxkG8-XR.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

archesdataviewer/static/vite_build/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>Arches Data Viewer</title>
7-
<script type="module" crossorigin src="/assets/index-CVuN95tD.js"></script>
8-
<link rel="stylesheet" crossorigin href="/assets/index-Byc3Ge_L.css">
7+
<script type="module" crossorigin src="/assets/index-B4kQKGQ7.js"></script>
8+
<link rel="stylesheet" crossorigin href="/assets/index-CxkG8-XR.css">
99
</head>
1010
<body>
1111
<div id="app"></div>

front-end/src/components/ArtistNote.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<div v-if="validateRemoteServerResponseSchema(remoteServerResponse)" class="artist-note">
33
<p>
44
{{ remoteServerResponse.note }}
5+
<br /><br />
56
<a :href="remoteServerResponse.url" target="_blank" rel="noopener noreferrer">{{
67
remoteServerResponse.url
78
}}</a>

front-end/src/views/AboutView.vue

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,15 @@
4141
href="https://code.librehq.com/ots/arches/arches-demo-data/-/tree/main/wac?ref_type=heads"
4242
>data</a
4343
>, and our
44-
<a href="https://code.librehq.com/ots/arches/arches-demo-data">data import scripts</a>, and
45-
the underlying
44+
<a href="https://code.librehq.com/ots/arches/arches-demo-data">data import scripts</a>, the
45+
underlying
4646
<a href="https://arches.arches-app-demo.opentechstrategies.com/">Arches server</a> that this
47-
application pulls data from. Contributions welcome.
47+
application pulls most of its data from, and the small
48+
<a href="https://github.com/OpenTechStrategies/archesAppRemoteServer"
49+
>external information server</a
50+
>
51+
that this app also pulls from to demonstrate how data from non-Arches sources can be
52+
combined with data from Arches. Contributions welcome.
4853
</p>
4954
<br />
5055
</div>

0 commit comments

Comments
 (0)