mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-25 14:51:28 +00:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f7c3b5e99a | ||
![]() |
2ec9139ab0 |
@@ -1,6 +1,10 @@
|
|||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.2.1 (2017-02-07)
|
||||||
|
|
||||||
|
* Fix task editing when no actions are specified
|
||||||
|
|
||||||
## 2.2.0 (2017-01-27)
|
## 2.2.0 (2017-01-27)
|
||||||
|
|
||||||
* Add support for Pa11y actions
|
* Add support for Pa11y actions
|
||||||
|
@@ -159,5 +159,5 @@ Copyright © 2013–2017, Team Pa11y
|
|||||||
[info-build]: https://travis-ci.org/pa11y/dashboard
|
[info-build]: https://travis-ci.org/pa11y/dashboard
|
||||||
[shield-license]: https://img.shields.io/badge/license-GPL%203.0-blue.svg
|
[shield-license]: https://img.shields.io/badge/license-GPL%203.0-blue.svg
|
||||||
[shield-node]: https://img.shields.io/badge/node.js%20support-4–6-brightgreen.svg
|
[shield-node]: https://img.shields.io/badge/node.js%20support-4–6-brightgreen.svg
|
||||||
[shield-version]: https://img.shields.io/badge/version-2.2.0-blue.svg
|
[shield-version]: https://img.shields.io/badge/version-2.2.1-blue.svg
|
||||||
[shield-build]: https://img.shields.io/travis/pa11y/dashboard/master.svg
|
[shield-build]: https://img.shields.io/travis/pa11y/dashboard/master.svg
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "pa11y-dashboard",
|
"name": "pa11y-dashboard",
|
||||||
"version": "2.2.0",
|
"version": "2.2.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Pa11y Dashboard is a visual web interface to the Pa11y accessibility reporter",
|
"description": "Pa11y Dashboard is a visual web interface to the Pa11y accessibility reporter",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@@ -13,7 +13,7 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Pa11y Dashboard. If not, see <http://www.gnu.org/licenses/>.
|
// along with Pa11y Dashboard. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/*jshint maxcomplexity:10*/
|
/*jshint maxcomplexity:12*/
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
@@ -72,6 +72,9 @@ function route(app) {
|
|||||||
return Boolean(action);
|
return Boolean(action);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
if (!req.body.actions) {
|
||||||
|
req.body.actions = [];
|
||||||
|
}
|
||||||
req.body.username = req.body.username || undefined;
|
req.body.username = req.body.username || undefined;
|
||||||
req.body.password = req.body.password || undefined;
|
req.body.password = req.body.password || undefined;
|
||||||
req.body.hideElements = req.body.hideElements || undefined;
|
req.body.hideElements = req.body.hideElements || undefined;
|
||||||
|
Reference in New Issue
Block a user