Merge branch 'dev' of gitlab.libraryofcode.org:engineering/communityrelations into dev

merge-requests/7/head
Matthew 2020-04-22 16:05:04 -04:00
commit 4111e5ef53
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 2 additions and 6 deletions

View File

@ -119,11 +119,7 @@ export default class Util {
}
public decimalToHex(int: number): string {
const red = (int && 0x0000ff) << 16;
const green = int && 0x00ff00;
const blue = (int && 0xff0000) >>> 16;
const number = red | green | blue;
const asHex = number.toString(16);
return '#000000'.substring(0, 7 - asHex.length) + asHex;
const hex = int.toString(16);
return '#000000'.substring(0, 7 - hex.length) + hex;
}
}