Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Commit

Permalink
feat(ui): fixed minor bugs when using configs
Browse files Browse the repository at this point in the history
refs: #181
  • Loading branch information
ChrisRousey committed Mar 15, 2023
1 parent 14bb29b commit d0efe05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/containers/configs/ListConfigs.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ListConfigs extends Component {
);
}

const configs = this.props.configs.sort(
const configs = this.props.configs.configs.sort(
(a, b) => Date.parse(b.updatedAt) - Date.parse(a.updatedAt)
);

Expand Down
2 changes: 2 additions & 0 deletions ui/src/reducers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ import deployments from "./deployments";
import filters from "./filters";
import pipelines from "./pipelines";
import streams from "./streams";
import configs from "./configs";
import transforms from "./transforms";
import userSessions from "./user_sessions";

export default combineReducers({
deployments,
configs,
filters,
pipelines,
streams,
Expand Down

0 comments on commit d0efe05

Please sign in to comment.