Skip to content

Commit 7a0e11d

Browse files
committed
fix: lint errors
1 parent b660f64 commit 7a0e11d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

server/util-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ exports.radius = function (
560560
* Redis server ping
561561
* @param {string} dsn The redis connection string
562562
* @param {boolean} rejectUnauthorized If false, allows unverified server certificates.
563-
* @returns {Promise<any>}
563+
* @returns {Promise<any>} Response from server
564564
*/
565565
exports.redisPingAsync = function (dsn, rejectUnauthorized) {
566566
return new Promise((resolve, reject) => {

src/pages/EditMonitor.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1118,10 +1118,9 @@ message HealthCheckResponse {
11181118
/**
11191119
* Retrieves the appropriate ignore TLS error label based on the monitor type.
11201120
*
1121-
* @return {string} Returns the non specific label if the monitor type is 'redis',
1122-
* otherwise, returns the default.
1121+
* @returns {string} Returns the non specific label if the monitor type is 'redis', otherwise, returns the default.
11231122
*/
1124-
ignoreTlsLabel() {
1123+
ignoreTlsLabel() {
11251124
return this.monitor.type === "redis"
11261125
? this.$t("ignoreTLSErrorGeneral")
11271126
: this.$t("ignoreTLSError");

0 commit comments

Comments
 (0)