From 0c3dc4210375a3fdfda357c956d679ca231c97a0 Mon Sep 17 00:00:00 2001 From: Dan Date: Tue, 18 Feb 2020 17:01:49 +0000 Subject: [PATCH] BOLO plate converted to uppercase --- nui/radar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nui/radar.js b/nui/radar.js index bf18263..dcdf76e 100644 --- a/nui/radar.js +++ b/nui/radar.js @@ -635,7 +635,7 @@ function loadUiSettings( data ) // Sets the on click function for the set BOLO plate button elements.setBoloBtn.click( function() { // Grab the value of the text input box - let plate = elements.boloText.val(); + let plate = elements.boloText.val().toUpperCase(); // Send the plate to the Lua side sendData( "setBoloPlate", plate );