1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-10 16:05:35 +02:00

Merge branch 'master' of github.com:plankanban/planka into feat_complex_filter

This commit is contained in:
Felipe Freitas 2024-04-12 11:09:31 -03:00
commit 43f7a5ff82
7 changed files with 12 additions and 12 deletions

View file

@ -15,13 +15,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.25
version: 0.1.26
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.16.3"
appVersion: "1.16.4"
dependencies:
- alias: postgresql

View file

@ -1 +1 @@
REACT_APP_VERSION=1.16.3
REACT_APP_VERSION=1.16.4

View file

@ -20,7 +20,7 @@ const mapStateToProps = (state) => {
isSubmittingUsingOidc,
error,
withOidc: !!oidcConfig,
isOidcEnforced: oidcConfig && oidcConfig.isEnforced,
isOidcEnforced: !!oidcConfig && oidcConfig.isEnforced,
};
};

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "planka",
"version": "1.16.3",
"version": "1.16.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "planka",
"version": "1.16.3",
"version": "1.16.4",
"hasInstallScript": true,
"license": "AGPL-3.0",
"dependencies": {

View file

@ -1,6 +1,6 @@
{
"name": "planka",
"version": "1.16.3",
"version": "1.16.4",
"private": true,
"homepage": "https://plankanban.github.io/planka",
"repository": {

View file

@ -23,9 +23,9 @@ module.exports = {
from: sails.config.custom.smtpFrom,
});
sails.log.info('Email sent: %s', info.messageId);
sails.log.info(`Email sent: ${info.messageId}`);
} catch (error) {
sails.log.error(error); // TODO: provide description text?
sails.log.error(`Error sending email: ${error}`);
}
},
};

View file

@ -35,19 +35,19 @@ module.exports = {
body: JSON.stringify(body),
});
} catch (error) {
sails.log.error(error); // TODO: provide description text?
sails.log.error(`Error sending to Slack: ${error}`);
return;
}
if (!response.ok) {
sails.log.error('Error sending to Slack: %s', response.error);
sails.log.error(`Error sending to Slack: ${response.error}`);
return;
}
const responseJson = await response.json();
if (!responseJson.ok) {
sails.log.error('Error sending to Slack: %s', responseJson.error);
sails.log.error(`Error sending to Slack: ${responseJson.error}`);
}
},
};