Allow inspection for all prompts

Because, really, why not.
This commit is contained in:
maver 2023-08-08 19:55:51 +02:00
parent 46c7e63fad
commit 280397c30b

View File

@ -746,7 +746,7 @@ PromptManagerModule.prototype.checkForMissingPrompts = function(prompts) {
* @returns {boolean} True if the prompt is a marker, false otherwise. * @returns {boolean} True if the prompt is a marker, false otherwise.
*/ */
PromptManagerModule.prototype.isPromptInspectionAllowed = function (prompt) { PromptManagerModule.prototype.isPromptInspectionAllowed = function (prompt) {
return true === prompt.marker; return true;
} }
/** /**