diff --git a/src/plugins/logs/index.js b/src/plugins/logs/index.js index cadd36c82..38a349782 100644 --- a/src/plugins/logs/index.js +++ b/src/plugins/logs/index.js @@ -423,6 +423,18 @@ export default class LogTable extends FlipperDevicePlugin< break; } } + if (highlightedRows.size <= 0) { + // Check if the individual lines in the deeplinkPayload is matched or not. + const arr = deepLinkPayload.split('\n'); + for (let msg of arr) { + for (let i = rows.length - 1; i >= 0; i--) { + if (rows[i].filterValue && rows[i].filterValue.includes(msg)) { + highlightedRows.add(rows[i].key); + break; + } + } + } + } return highlightedRows; };