-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #537 from uw-it-aca/char/vite6
Char/vite6
- Loading branch information
Showing
43 changed files
with
969 additions
and
652 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,10 @@ | ||
{ | ||
"extends": [ | ||
"stylelint-config-standard-scss", | ||
"stylelint-config-recommended-vue/scss", | ||
"stylelint-config-prettier" | ||
"stylelint-config-recommended-vue/scss" | ||
], | ||
"rules": { | ||
"scss/no-global-function-names": null, | ||
"no-invalid-position-at-import-rule": null, | ||
"scss/at-import-partial-extension": [ | ||
"never", | ||
{ | ||
"severity": "warning" | ||
} | ||
] | ||
"no-invalid-position-at-import-rule": null | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,77 @@ | ||
<template> | ||
<template v-if="errorResponse.status === 404" id="404-error"> | ||
<div class="alert" role="main"> | ||
<template v-if="errorResponse.status === 404"> | ||
<div id="404-error" class="alert" role="main"> | ||
<h3>404 {{ errorText }}</h3> | ||
<p>Some things you may want to try:</p> | ||
<ul> | ||
<li>Make sure you are logged into this service with the appropriate UW NetID.</li> | ||
<li>Feel free to contact us at [email protected] if you have questions or need help.</li> | ||
<li> | ||
Make sure you are logged into this service with the appropriate UW | ||
NetID. | ||
</li> | ||
<li> | ||
Feel free to contact us at [email protected] if you have questions or need | ||
help. | ||
</li> | ||
</ul> | ||
</div> | ||
</template> | ||
<template v-else-if="errorResponse.status === 401" id="403-error"> | ||
<div class="alert" role="main"> | ||
<template v-else-if="errorResponse.status === 401"> | ||
<div id="401-error" class="alert" role="main"> | ||
<h3>{{ errorText }}</h3> | ||
<p>Some things you may want to try:</p> | ||
<ul> | ||
<li>Make sure you are logged into this service with the appropriate UW NetID.</li> | ||
<li>Feel free to contact us at [email protected] if you have questions or need help.</li> | ||
<li> | ||
Make sure you are logged into this service with the appropriate UW | ||
NetID. | ||
</li> | ||
<li> | ||
Feel free to contact us at [email protected] if you have questions or need | ||
help. | ||
</li> | ||
</ul> | ||
</div> | ||
</template> | ||
<template v-else-if="errorResponse.status === 500" id="500-error"> | ||
<div class="alert" role="main"> | ||
<template v-else-if="errorResponse.status === 500"> | ||
<div id="500-error" class="alert" role="main"> | ||
<h3>There was a problem retrieving grade information:</h3> | ||
<h4>{{ errorText }}</h4> | ||
|
||
<p>The Gradepage support team has been alerted of this issue and are working to get you back on track.</p> | ||
<p> | ||
The Gradepage support team has been alerted of this issue and are | ||
working to get you back on track. | ||
</p> | ||
<p>You may want to:</p> | ||
<ul> | ||
<li>Give us a little time, and try again later.</li> | ||
<li>Drop us a line at <a href="mailto:[email protected]">[email protected]</a> and let us know that this has been taking awhile.</li> | ||
<li> | ||
Drop us a line at <a href="mailto:[email protected]">[email protected]</a> and let | ||
us know that this has been taking awhile. | ||
</li> | ||
</ul> | ||
</div> | ||
</template> | ||
<template v-else id="543-error"> | ||
<div class="alert" role="main"> | ||
<template v-else> | ||
<div id="543-error" class="alert" role="main"> | ||
<h3>There was a problem retrieving grade information:</h3> | ||
<h4>{{ errorText }}</h4> | ||
|
||
<p>To correct this issue, <strong>please email us at <a href="mailto:[email protected]">[email protected]</a></strong>.</p> | ||
<p> | ||
To correct this issue, | ||
<strong | ||
>please email us at | ||
<a href="mailto:[email protected]">[email protected]</a></strong | ||
>. | ||
</p> | ||
<ul> | ||
<li>Include a screenshot, or paste the error text into your email so that we can quickly diagnose the issue. | ||
<li> | ||
Include a screenshot, or paste the error text into your email so that | ||
we can quickly diagnose the issue. | ||
<ul> | ||
<li>The error text to paste into your email to us is: <br/>{{ errorText }}</li> | ||
<li> | ||
The error text to paste into your email to us is: <br />{{ | ||
errorText | ||
}} | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
|
@@ -51,6 +81,7 @@ | |
|
||
<script> | ||
export default { | ||
name: "ErrorsComp", | ||
props: { | ||
errorResponse: { | ||
type: Object, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.