Skip to content

Commit

Permalink
Update getDomainsDNS.gs
Browse files Browse the repository at this point in the history
  • Loading branch information
dchristlieb committed May 9, 2024
1 parent 435735a commit 85588d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions getDomainsDNS.gs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ sheet.getRange('A2').setValue('google.com');

const rangeG = sheet.getRange("G2:G" + lastRow);
const ruleG = SpreadsheetApp.newConditionalFormatRule()
.whenTextContains("v=dkim")
.whenTextContains("v=dmarc")
.setBackground("#b7e1cd")
.setRanges([rangeG])
.build();
Expand All @@ -153,7 +153,7 @@ sheet.getRange('A2').setValue('google.com');
.build();

const ruleGRed = SpreadsheetApp.newConditionalFormatRule()
.whenTextDoesNotContain("v=dkim")
.whenTextDoesNotContain("v=dmarc")
.setBackground("#ffb6c1")
.setRanges([rangeG])
.build();
Expand Down

0 comments on commit 85588d8

Please sign in to comment.