Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.1.0 #490

Merged
merged 7 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,11 @@ jobs:
- name: Release with Maven
run: mvn -s .mvn/settings.xml -B -DreleaseVersion=${{ github.event.inputs.release_version }} gitflow:release --file pom.xml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCKER_REGISTRY_USERNAME: dipa
DOCKER_REGISTRY_TOKEN: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
GIT_HUB_USERNAME: ${{ secrets.GIT_HUB_USERNAME }}
GIT_HUB_PACKAGES_ACCESS_TOKEN: ${{ secrets.GIT_HUB_PACKAGES_ACCESS_TOKEN_WRITE }}
NODE_AUTH_TOKEN: ${{ secrets.GIT_HUB_PACKAGES_ACCESS_TOKEN_WRITE }}
GIT_HUB_PACKAGES_ACCESS_TOKEN: ${{ secrets.GIT_HUB_PACKAGES_ACCESS_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GIT_HUB_PACKAGES_ACCESS_TOKEN }}
- name: Deployment to Kubernetes
run: |
git checkout -f main
Expand Down
2 changes: 2 additions & 0 deletions client/public/locales/de/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
},
"dataType": {
"activity": "Aktivität",
"conventionFigure": "Konventionsabbildung",
"decisionPoint": "Entscheidungspunkt",
"division": "Bereich",
"externalTemplate": "Externe Kopiervorlage",
"methodReference": "Methodenreferenz",
"organisationRole": "Organisationsrolle",
Expand Down
11 changes: 10 additions & 1 deletion client/public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,15 @@ ul.sideMenu > li > ul > li > ul > li > div {
color: rgba(0, 0, 0, 0.88);
}

.disable-link{
.disable-link {
pointer-events: none;
}

/* side background color like menu background color */
.ant-layout-sider-children {
background: #f5f5f5;
}

.ant-layout-header {
background: #fff;
}
4 changes: 2 additions & 2 deletions client/src/components/Breadcrumbs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Link, useLocation } from 'react-router-dom';
import React, { useEffect, useState } from 'react';
import { useDocumentation } from '../context/DocumentationContext';
import { Breadcrumb } from 'antd';
import { getSearchStringFromHash } from '../shares/utils';
import { decodeXml, getSearchStringFromHash } from '../shares/utils';

export function Breadcrumbs() {
// const [pathSnippets, setPathSnippets] = useState<string[]>([]);
Expand Down Expand Up @@ -49,7 +49,7 @@ export function Breadcrumbs() {
const url = '/documentation/' + parent?.key + getSearchStringFromHash();
return {
key: url,
title: <Link to={url}>{parent?.label}</Link>,
title: <Link to={url}>{decodeXml(parent?.label)}</Link>,
};
})
.reverse();
Expand Down
1 change: 0 additions & 1 deletion client/src/components/header/SiteHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ export const SiteHeader = (props: any) => {
<Col span={20}>
<Menu
mode="horizontal"
theme="dark"
defaultSelectedKeys={[props.selectedKey]}
selectedKeys={[current]}
// onClick={handleMenuClick}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export type PageEntry = {
export type TableEntry = {
id: string;
descriptionEntry: string;
dataEntryDescription?: string;
dataEntries: DataEntry[];
};

Expand Down
Loading
Loading