So I managed to figure something out, hopefully it won't mess with other stuff.. I modified maMaterialDashboards and removed Md-pickers, which was what was causing my problem.
Is there a way to just bypass all this and not call maMaterialDashboards? It won't load with just calling maDashboards in my app.js. I want to still be able to use mdAdmin if needed..
/**
* @copyright 2016 {@link http://infiniteautomation.com|Infinite Automation Systems, Inc.} All rights reserved.
* @author Jared Wiltshire
*/
define(['angular',
'./maDashboards',
'angular-material-data-table'], function(angular, maDashboards) {
'use strict';
return angular.module('maMaterialDashboards', ['maDashboards', 'md.data.table']);
}); // define