Skip to content

Commit 6b22e80

Browse files
committed
2024-11-14 - web-ui - external feedback
1 parent 0e7ba10 commit 6b22e80

File tree

91 files changed

+3
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+3
-3
lines changed

server/src/main/java/com/objectcomputing/checkins/security/HomeExternalRecipientController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public HomeExternalRecipientController(Environment environment) {
3333
@Get("/externalFeedback/{path:.+}")
3434
public Optional<StreamedFile> forward(String path) {
3535
LOG.info("HomeExternalRecipientController, forward, path: " + path);
36-
return environment.getResource("public-external-feedback/index_external_recipient.html").map(StreamedFile::new);
36+
return environment.getResource("public-external-feedback/index.html").map(StreamedFile::new);
3737
}
3838

3939
}

web-ui-external-feedback/.storybook/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
"stories": ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"],
3-
"staticDirs": ["../public-external-feedback"], //👈 Configures the static asset folder in Storybook
3+
"staticDirs": ["../public"], //👈 Configures the static asset folder in Storybook
44
"core": {
55
"disableTelemetry": true, // 👈 Disables telemetry
66
},

web-ui-external-feedback/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def distDir = layout.projectDirectory.dir("dist")
2626
def yarnBuildTask = tasks.register("yarnBuild", YarnTask) {
2727
group 'build'
2828
inputs.files(fileTree('node_modules'))
29-
inputs.files(fileTree('public-external-feedback'))
29+
inputs.files(fileTree('public'))
3030
inputs.files(fileTree('src'))
3131
inputs.file('index.html')
3232
inputs.file('package.json')

web-ui-external-feedback/public-external-feedback/default_profile.jpg renamed to web-ui-external-feedback/public/default_profile.jpg

File renamed without changes.
File renamed without changes.

web-ui-external-feedback/public-external-feedback/fonts/roboto-300-light-italic.woff renamed to web-ui-external-feedback/public/fonts/roboto-300-light-italic.woff

File renamed without changes.

web-ui-external-feedback/public-external-feedback/fonts/roboto-300-light.woff renamed to web-ui-external-feedback/public/fonts/roboto-300-light.woff

File renamed without changes.

web-ui-external-feedback/public-external-feedback/fonts/roboto-400-italic.woff renamed to web-ui-external-feedback/public/fonts/roboto-400-italic.woff

File renamed without changes.

web-ui-external-feedback/public-external-feedback/fonts/roboto-400-regular.woff renamed to web-ui-external-feedback/public/fonts/roboto-400-regular.woff

File renamed without changes.

web-ui-external-feedback/public-external-feedback/fonts/roboto-500-medium-italic.woff renamed to web-ui-external-feedback/public/fonts/roboto-500-medium-italic.woff

File renamed without changes.

0 commit comments

Comments
 (0)