kong-dashboard: not working
Issue summary
Briefly describe the issue you are experiencing (or the feature you want to see added). Tell us what you were trying to do and what happened instead.
Remember, an issue is not the place to ask questions. You can use Stack Overflow for that.
Your environment
- Kong version = 1.1.1
- Kong Dashboard version = 3.6.0 (Kong Dashboard versions before 3.0.0 aren’t supported anymore)
- Node version = #.#.#
- Npm version = #.#.#
Issue description

Current behavior
Tell us what happens. any action not working, i`m use docker
Expected behavior
Tell us what should happen instead.
Steps to reproduce
Tell us how to reproduce this issue.
Good to have
Any screenshots? Browsers’ logs?
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Reactions: 10
- Comments: 23 (2 by maintainers)
there is some config missed for kong-schemas.js
you can either fill up your config for your version such as 1.1, 1.2, 1.3 or make the 1.0 config used by default when your kong version is above 1.0; I solve the problems with the latter way by change the getter like this;
var Schema = { get: function(version) { var major = semver.major(version); var minor = major==0?semver.minor(version):0; return schemas[major + '.' + minor]; } };Does this project no longer maintained?