Format
This commit is contained in:
@@ -28,7 +28,10 @@
|
||||
</p>
|
||||
<p>The email server may store the address and message content as part of its regular operation, and your consent to this is implied when you sign up.</p>
|
||||
<p>In addition to the host portion of your email address, a randomly generated UUID is stored for the purpose of authorizing access to the rail staff data.</p>
|
||||
<p>If you enable location data, your location will be sent to the server when you navigate to the homepage to determine your closest stations. This data is never stored on the server after the nearest stations have been send to your device.</p>
|
||||
<p>
|
||||
If you enable location data, your location will be sent to the server when you navigate to the homepage to determine your closest stations. This data is never stored on the
|
||||
server after the nearest stations have been send to your device.
|
||||
</p>
|
||||
<h2>Reporting an Issue</h2>
|
||||
<p>When you report an issue, certain data is collected, including your browser's User Agent string and the size of the window in which you are viewing the website.</p>
|
||||
<p>
|
||||
|
||||
@@ -9,11 +9,11 @@
|
||||
const title = "Settings";
|
||||
|
||||
$: if ($location) {
|
||||
getCurrentLocation()
|
||||
getCurrentLocation();
|
||||
}
|
||||
|
||||
function locationToast() {
|
||||
toast("Settings updated")
|
||||
toast("Settings updated");
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -21,11 +21,11 @@
|
||||
|
||||
<QlSet />
|
||||
|
||||
<Island variables={{title: "Location"}}>
|
||||
<Island variables={{ title: "Location" }}>
|
||||
<p>Use your location to quickly check departure boards near you</p>
|
||||
<div class="checkbox-container">
|
||||
<label for="location_enable">Enabled</label>
|
||||
<input id="location_enable" type="checkbox" bind:checked={$location} on:click={locationToast}>
|
||||
<input id="location_enable" type="checkbox" bind:checked={$location} on:click={locationToast} />
|
||||
</div>
|
||||
</Island>
|
||||
|
||||
|
||||
@@ -51,9 +51,7 @@
|
||||
<p>
|
||||
<Tooltip text="Go"><IconBrandGolang /></Tooltip>
|
||||
<br />
|
||||
<a class="data" href="https://git.fjla.uk/owlboard/mq-client" target="_blank"
|
||||
>timetable-mgr<br /><span class="data">{data?.["mq-client"] || "Not installed"}</span></a
|
||||
>
|
||||
<a class="data" href="https://git.fjla.uk/owlboard/mq-client" target="_blank">timetable-mgr<br /><span class="data">{data?.["mq-client"] || "Not installed"}</span></a>
|
||||
</p>
|
||||
</Island>
|
||||
{:catch}
|
||||
|
||||
Reference in New Issue
Block a user