code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/threeD-components/Inventory.js b/threeD-components/Inventory.js @@ -9,6 +9,11 @@ const InventoryCard = (props = {}) => { </a> `; }; +const InventoryAvatar = props => { + return `<div class=avatar> + <img src="${location.protocol}//${location.host}/female.png"> + </div>`; +}; const InventoryDetails = props ...
0
diff --git a/src/components/ContentWrap.jsx b/src/components/ContentWrap.jsx @@ -741,20 +741,9 @@ export default class ContentWrap extends Component { /> </div> </div> - <UserCodeMirror - options={{ - mode: 'htmlmixed', - profile: 'xhtml', - gutters: ['CodeMirror-linenumbers', 'CodeMirror-foldgutter'], - noAutocomplete...
14
diff --git a/assets/js/googlesitekit/modules/datastore/modules.js b/assets/js/googlesitekit/modules/datastore/modules.js @@ -233,7 +233,6 @@ const baseActions = { * @param {WPComponent} [settings.settingsViewComponent] Optional. React component to render the settings view panel. Default none. * @param {WPComponent} [se...
2
diff --git a/docs/README.md b/docs/README.md @@ -137,6 +137,8 @@ Some fragments (`hero` fragment for example) may display images, if configured i So the fragment will look in the following order `fragment > page > images (global)`. If you need to use an image in several pages you can put it in the `static/images/` dire...
0
diff --git a/layouts/partials/head.html b/layouts/partials/head.html <meta name="theme-author-url" content="https://about.okkur.org"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> - <meta http-equiv="Content-Language" content="{{ .Site.LanguageCode | defau...
4
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml @@ -26,72 +26,25 @@ on: jobs: pre-deploy: - uses: GoodDollar/GoodDAPP/.github/workflows/android_utils.yml@3493-code-push + uses: ./.github/workflows/android_utils.yml with: target_branch: ${{ github.event.inputs.release }} codepush: name: Hot Co...
13
diff --git a/docs/guides/building-a-minecraft-demo.md b/docs/guides/building-a-minecraft-demo.md @@ -331,9 +331,8 @@ using `<a-mixin>` which can be reused to create voxels like a prefab: <a-entity mixin="voxel" position="-1 0 -2"></a-entity> <a-entity mixin="voxel" position="0 0 -2"></a-entity> - <a-entity mixin="voxel...
14
diff --git a/src/traces/isosurface/convert.js b/src/traces/isosurface/convert.js @@ -128,12 +128,21 @@ function createIsosurfaceTrace(scene, data) { var gl = scene.glplot.gl; - var RES = 64; - var resX = RES; - var resY = RES; - var resZ = RES; + var minX = Math.min.apply(null, data.x); + var minY = Math.min.apply(null...
4
diff --git a/src/samples/conference/public/script2.js b/src/samples/conference/public/script2.js @@ -218,8 +218,13 @@ var runSocketIOSample = function() { var myRoom = getParameterByName('room'); var isHttps = (location.protocol === 'https:'); var mediaUrl = getParameterByName('url'); + var transport = getParameterByNa...
12
diff --git a/package.json b/package.json "dependencies": { "body-parser": "^1.17.2", "colors": "^1.1.2", - "electron": "^1.6.10", + "electron": "1.4.15", "express": "^4.15.3", "express-ipfilter": "0.3.1", "feedme": "latest",
4
diff --git a/activities/EbookReader.activity/js/activity.js b/activities/EbookReader.activity/js/activity.js @@ -45,6 +45,8 @@ var app = new Vue({ vm.currentBook = vm.currentLibrary.database[parsed.current]; vm.currentEpub = ePub(vm.currentLibrary.information.fileprefix+vm.currentBook.file); vm.currentView = EbookReade...
9
diff --git a/CHANGELOG.md b/CHANGELOG.md # Changelog -## Unreleased +## 1.47.0 - Add MSSQL (Microsoft SQL Server) instrumentation (supports [mssql](https://www.npmjs.com/package/mssql), version >= 4 via [tedious driver](https://www.npmjs.com/package/tedious)). - Tracing support for [mongodb](https://www.npmjs.com/packa...
6
diff --git a/assets/src/dashboard/theme.js b/assets/src/dashboard/theme.js @@ -101,7 +101,7 @@ const theme = { background: 'transparent', activeBackground: 'transparent', borderRadius: 4, - border: 'none', + border: borders.transparent, arrowColor: colors.gray300, }, },
1
diff --git a/spec/models/table_spec.rb b/spec/models/table_spec.rb @@ -1901,102 +1901,6 @@ describe Table do end end #validation_for_link_privacy - describe '#the_geom_conversions' do - it 'tests the_geom conversions and expected results' do - # Empty table/default schema (no conversion) - table = new_table(:name => 'o...
2
diff --git a/extensions/projection/json-schema/schema.json b/extensions/projection/json-schema/schema.json } } } + }, + "assets": { + "type": "object", + "additionalProperties": { + "type": "object", + "properties": { + "proj:shape":{ + "title":"Shape", + "type":"array", + "minItems":2, + "maxItems":2, + "items":{ + "t...
0
diff --git a/userscript.user.js b/userscript.user.js @@ -10287,7 +10287,7 @@ var $$IMU_EXPORT$$; // thanks to shivsah on github for the inspiration: https://github.com/qsniyg/maxurl/issues/95 mouseover_gallery_download_key: ["shift", "d"], gallery_download_unchanged: true, - gallery_zip_filename_format: "{host_domain_n...
7
diff --git a/src/__tests__/fixtures/lambdaFunction.fixture.js b/src/__tests__/fixtures/lambdaFunction.fixture.js @@ -138,7 +138,6 @@ exports.defaultTimeoutHandler = async function defaultTimeoutHandler( return context.getRemainingTimeInMillis(); }; -// eslint-disable-next-line no-empty-function exports.getExecutionTime...
2
diff --git a/civictechprojects/views.py b/civictechprojects/views.py @@ -327,7 +327,7 @@ def approve_event(request, event_id): @ensure_csrf_cookie @xframe_options_exempt -def index(request): +def index(request, id='Unused but needed for routing purposes; do not remove!'): page = get_page_section(request.get_full_path()...
14
diff --git a/fabfile/__init__.py b/fabfile/__init__.py @@ -24,11 +24,6 @@ from render_utils import load_graphic_config SPREADSHEET_COPY_URL_TEMPLATE = 'https://www.googleapis.com/drive/v2/files/%s/copy' SPREADSHEET_VIEW_TEMPLATE = 'https://docs.google.com/spreadsheet/ccc?key=%s#gid=1' -""" -Base configuration -""" -env...
2
diff --git a/updates/2017-09-05.yml b/updates/2017-09-05.yml @@ -8,4 +8,3 @@ added: - tutorials description: | A [new tutorial](https://auth0.com/docs/clients/enable-android-app-links) was added on how to configure Android App Links for your Auth0 Android client. - \ No newline at end of file
0
diff --git a/Source/DataSources/GpxDataSource.js b/Source/DataSources/GpxDataSource.js @@ -424,7 +424,6 @@ define([ return href; } - function processPositionGraphics(dataSource, entity) { var label = entity.label; if (!defined(label)) { @@ -662,6 +661,7 @@ define([ //a list of track segments var trackSegs = queryNodes(...
7
diff --git a/app/assets/stylesheets/themes/_theme-template.scss b/app/assets/stylesheets/themes/_theme-template.scss @@ -1370,8 +1370,8 @@ $pulsate-red-end > li { border-radius: 2px; color: $dark-text-color; - padding: .2rem .75rem; - margin: .3rem 0; + padding: 3px 11px; + margin: 5px; &:hover { color: $primary-text-c...
14
diff --git a/src/traces/isosurface/convert.js b/src/traces/isosurface/convert.js @@ -128,13 +128,6 @@ function createIsosurfaceTrace(scene, data) { var gl = scene.glplot.gl; - var minX = Math.min.apply(null, data.x); - var minY = Math.min.apply(null, data.y); - var minZ = Math.min.apply(null, data.z); - - var maxX = Ma...
9
diff --git a/config/webpack.config.js b/config/webpack.config.js @@ -4,7 +4,7 @@ const webpack = require( "webpack" ); const webpackAssetsPath = path.join( "app", "webpack" ); const config = { - mode: "production", + mode: "none", context: path.resolve( webpackAssetsPath ), entry: { // list out the various bundles we n...
12
diff --git a/resource/styles/scss/_search.scss b/resource/styles/scss/_search.scss // search help .search-help { - margin-left: none; + caption { text-align: center; - .right, .left { - padding: 0px !important; - border: solid 1px #000000; - float: left; } - .left { - width: 35%; - } - .right { - width: 65%; - } - ul, ...
14
diff --git a/src/content/en/updates/2019/05/model-viewer-ar.md b/src/content/en/updates/2019/05/model-viewer-ar.md @@ -37,7 +37,7 @@ and methods. After use it like any HTML element. ```html -&lt;model-viewer alt="A 3D model of an astronaut." src="Astronaut.gltf" ios-src="Astronaut.usdz" magic-leap ar> +<model-viewer al...
1
diff --git a/dc-worker-manager.js b/dc-worker-manager.js @@ -168,6 +168,35 @@ export class DcWorkerManager { }) ); } + + async createTracker(lod, minLodRange, trackY, {signal} = {}) { + const worker = this.getNextWorker(); + const result = await worker.request('createTracker', { + instance: this.instance, + lod, + minL...
0
diff --git a/src/pages/iou/steps/IOUAmountPage.js b/src/pages/iou/steps/IOUAmountPage.js @@ -79,7 +79,7 @@ class IOUAmountPage extends React.Component { this.updateAmount = this.updateAmount.bind(this); this.stripCommaFromAmount = this.stripCommaFromAmount.bind(this); this.focusTextInput = this.focusTextInput.bind(this...
10
diff --git a/lib/waterline.js b/lib/waterline.js @@ -234,8 +234,8 @@ function Waterline() { usedSchemas[identity] = { primaryKey: collection.primaryKey, definition: collection.schema, - tableName: collection.tableName || identity, - identity: identity + tableName: collection.tableName, + identity: collection.identity }...
4
diff --git a/deps/exokit-bindings/canvascontext/src/canvas-context.cc b/deps/exokit-bindings/canvascontext/src/canvas-context.cc @@ -1334,6 +1334,8 @@ NAN_METHOD(CanvasRenderingContext2D::SetTexture) { int height = info[2]->Int32Value(); WebGLRenderingContext *gl = ObjectWrap::Unwrap<WebGLRenderingContext>(Local<Object...
12
diff --git a/lib/Compilation.js b/lib/Compilation.js @@ -846,11 +846,6 @@ class Compilation extends Tapable { iterationDependencies(dependencies); const afterBuild = () => { - if (currentProfile) { - const afterBuilding = Date.now(); - currentProfile.building = afterBuilding - afterFactory; - } - if (recursive && addMo...
2
diff --git a/index.js b/index.js @@ -67,7 +67,6 @@ app.on('window-all-closed', () => { app.on('before-quit', function () { app.mpris.clearActivity() app.discord.rpc.disconnect() - app.discord.rpc.clearActivity() console.log("[DiscordRPC] Disconnecting from Discord.") console.log("---------------------------------------...
2
diff --git a/editor.js b/editor.js @@ -30,7 +30,7 @@ const ghDownload = ghDownloadDirectory.default; // window.ghDownload = ghDownload; const htmlRenderer = new HtmlRenderer(); -const testImgUrl = 'https://app.webaverse.com/assets/popup3.svg'; +const testImgUrl = window.location.protocol + '//' + window.location.host +...
0
diff --git a/static/admin/config.yml b/static/admin/config.yml @@ -59,6 +59,7 @@ collections: - name: articles label: Articles folder: src/markdown/articles/ + media_folder: static/images/articles/ path: '{{year}}/{{slug}}' create: true fields:
12
diff --git a/token-metadata/0x2859021eE7F2Cb10162E67F33Af2D22764B31aFf/metadata.json b/token-metadata/0x2859021eE7F2Cb10162E67F33Af2D22764B31aFf/metadata.json "symbol": "SNTR", "address": "0x2859021eE7F2Cb10162E67F33Af2D22764B31aFf", "decimals": 4, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/src/components/auth/Auth.js b/src/components/auth/Auth.js @@ -52,7 +52,7 @@ class Auth extends React.Component<Props> { <View style={styles.topContainer}> <Title style={styles.title}>Just a heads up!</Title> <Description style={styles.paragraph}> - {`All tokens in the Alpha are "test tokens".\n They have n...
1
diff --git a/src/module/actor/actor-inventory-utils.js b/src/module/actor/actor-inventory-utils.js @@ -972,7 +972,7 @@ export class ActorItemHelper { container.storage.push({ type: currentStorage?.type || "bulk", subtype: currentStorage?.subtype || "", - amount: currentStorage?.amount || itemData.storageCapacity || 0, ...
14
diff --git a/generators/generator-constants.js b/generators/generator-constants.js @@ -25,7 +25,7 @@ const NODE_VERSION = '12.14.0'; const YARN_VERSION = '1.21.1'; const NPM_VERSION = '6.13.6'; -const GRADLE_VERSION = '6.0.1'; +const GRADLE_VERSION = '6.1'; // Libraries version const JIB_VERSION = '1.8.0';
3
diff --git a/web/components/pages/AuditLogPage.js b/web/components/pages/AuditLogPage.js @@ -17,7 +17,7 @@ const AuditLogPage = class extends Component { } filterRow = (logMessage, search) => { - const stringToSearch = `${logMessage.log} ${logMessage.author.first_name} ${logMessage.author.last_name} ${logMessage.author...
9
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,8 +10,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - The API portion of STAC has been split off into a [new repository: stac-api-spec](https://github.com/radiantearth/stac-api-spec) and will start being versioned and released sepa...
3
diff --git a/Source/Scene/GlobeSurfaceTileProvider.js b/Source/Scene/GlobeSurfaceTileProvider.js @@ -1619,7 +1619,7 @@ define([ --maxTextures; } - if (frameState.shadowState.shadowsEnabled) { + if (defined(frameState.shadowState) && frameState.shadowState.shadowsEnabled) { --maxTextures; } if (defined(tileProvider.clip...
1
diff --git a/token-metadata/0x5dbcF33D8c2E976c6b560249878e6F1491Bca25c/metadata.json b/token-metadata/0x5dbcF33D8c2E976c6b560249878e6F1491Bca25c/metadata.json "symbol": "YVAULT-LP-YCURVE", "address": "0x5dbcF33D8c2E976c6b560249878e6F1491Bca25c", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus"...
3
diff --git a/app-manager.js b/app-manager.js @@ -271,6 +271,16 @@ class AppManager extends EventTarget { } return null; } + hasTrackedApp(instanceId) { + const {state} = this; + const apps = state.getArray(appsMapName); + for (const app of apps) { + if (app === instanceId) { + return true; + } + } + return false; + } c...
0
diff --git a/src/components/TextInput/baseTextInputPropTypes.js b/src/components/TextInput/baseTextInputPropTypes.js @@ -73,9 +73,6 @@ const propTypes = { /** Indicate whether pressing Enter on multiline input is allowed to submit the form. */ submitOnEnter: PropTypes.bool, - - /** Whether the input should be disabled....
13
diff --git a/assets/src/libraries/Book.test.js b/assets/src/libraries/Book.test.js @@ -82,7 +82,7 @@ describe('<Book />', () => { } }); - global.localStorage = { + global.sessionStorage = { getItem : () => { return null } }
1
diff --git a/app/services/visualization/common_data_service.rb b/app/services/visualization/common_data_service.rb @@ -55,6 +55,7 @@ module CartoDB carto_user = Carto::User.find(user.id) remotes_by_name = Carto::Visualization.remotes.where(user_id: user.id).map { |v| [v.name, v] }.to_h + ActiveRecord::Base.transaction ...
2
diff --git a/sirepo/package_data/static/js/srw.js b/sirepo/package_data/static/js/srw.js @@ -148,7 +148,7 @@ SIREPO.app.factory('srwService', function(appState, appDataService, beamlineServ $rootScope.$on('$locationChangeSuccess', function (event) { // reset reloadOnSearch so that back/next browser buttons will trigger...
1
diff --git a/shared/bull/create-redis.js b/shared/bull/create-redis.js @@ -4,9 +4,9 @@ import Redis from 'ioredis'; const config = process.env.NODE_ENV === 'production' && !process.env.FORCE_DEV ? { - port: process.env.COMPOSE_REDIS_PORT, - host: process.env.COMPOSE_REDIS_URL, - password: process.env.COMPOSE_REDIS_PASS...
4
diff --git a/src/components/nodes/startTimerEvent/index.js b/src/components/nodes/startTimerEvent/index.js @@ -44,15 +44,22 @@ export default { } if (key === 'eventDefinitions') { - // Set the timer event definition + const { body } = value[key]; + + const expression = definition.get(key)[0].timeCycle; + if (expression...
2
diff --git a/config/redirects.js b/config/redirects.js @@ -1557,6 +1557,10 @@ module.exports = [ from: '/sso/current/single-page-apps-sso', to: '/sso/current/single-page-apps' }, + { + from: '/sso/legacy/single-page-apps-sso', + to: '/sso/legacy/single-page-apps' + }, { from: '/integrations/slack', to: '/sso/current/in...
0
diff --git a/src/resources/lang/it/crud.php b/src/resources/lang/it/crud.php @@ -32,7 +32,7 @@ return [ // Revisions 'revisions' => 'Revisioni', - 'no_revisions' => 'Nessuna revisione Trovato', + 'no_revisions' => 'Nessuna revisione trovata', 'created_this' => 'ha creato questo', 'changed_the' => 'cambiato il', 'restor...
3
diff --git a/lib/shared/addon/components/cru-cluster/component.js b/lib/shared/addon/components/cru-cluster/component.js @@ -466,13 +466,16 @@ export default Component.extend(ViewNewEdit, ChildHook, { // A new cluster will not and the condition will be added as part of the creation. // The local cluster is pre-cerated ...
1
diff --git a/token-metadata/0x94939D55000B31B7808904a80aA7Bab05eF59Ed6/metadata.json b/token-metadata/0x94939D55000B31B7808904a80aA7Bab05eF59Ed6/metadata.json "symbol": "JIAOZI", "address": "0x94939D55000B31B7808904a80aA7Bab05eF59Ed6", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIE...
3
diff --git a/packages/idyll-components/src/tweet.js b/packages/idyll-components/src/tweet.js @@ -22,7 +22,11 @@ class Tweet extends Component { const twttrEl = document.createElement('script'); twttrEl.setAttribute( 'src', - `${document.location.protocol}//platform.twitter.com/widgets.js` + `${ + document.location.prot...
3
diff --git a/src/views/preview/preview.jsx b/src/views/preview/preview.jsx @@ -28,8 +28,6 @@ const frameless = require('../../lib/frameless'); const GUI = require('scratch-gui'); const IntlGUI = injectIntl(GUI.default); -const isMobileDevice = () => screen.height <= frameless.mobile || screen.width <= frameless.mobile;...
7
diff --git a/app/services/carto/user_metadata_export_service.rb b/app/services/carto/user_metadata_export_service.rb @@ -140,7 +140,7 @@ module Carto user.client_applications = build_client_applications_from_hash(exported_user[:client_application]) - # user.oauth_apps = build_oauth_apps_from_hash(exported_user[:oauth_a...
11
diff --git a/ui/src/components/EntityTable/EntityTable.jsx b/ui/src/components/EntityTable/EntityTable.jsx @@ -40,7 +40,7 @@ class EntityTable extends Component { return ( <TableComponent collection={collection} - onStatusChange={this.onStatusChange} + onStatusChange={() => null} entities={results} sort={sort} isPendin...
12
diff --git a/assets/js/googlesitekit/data/create-settings-store.js b/assets/js/googlesitekit/data/create-settings-store.js @@ -299,7 +299,7 @@ export const createSettingsStore = ( type, identifier, datapoint, { } default: { - // Check if this action is for a sub-setting reducer. + // Check if this action is for a reduc...
7
diff --git a/modules/controller/rpc-controller.js b/modules/controller/rpc-controller.js @@ -192,7 +192,7 @@ class RpcController { for (const id of ids) { let result = await this.dataService.resolve(id, true); - if (!result) { + if (result) { let {nquads, isAsset} = result; let assertion = await this.dataService.create...
3
diff --git a/src/plugins/StatusBar/index.js b/src/plugins/StatusBar/index.js @@ -8,7 +8,8 @@ const { prettyETA } = require('../../core/Utils') const prettyBytes = require('prettier-bytes') /** - * A status bar. + * StatusBar: renders a status bar with upload/pause/resume/cancel/retry buttons, + * progress percentage an...
0
diff --git a/src/style_manager/view/PropertyView.js b/src/style_manager/view/PropertyView.js import Backbone from 'backbone'; import { bindAll, isArray, isUndefined, debounce } from 'underscore'; import { camelCase } from 'utils/mixins'; -import { includes } from 'underscore'; +import { includes, each } from 'underscor...
14
diff --git a/test-integration/scripts/24-tests-e2e.sh b/test-integration/scripts/24-tests-e2e.sh @@ -20,21 +20,43 @@ fi #------------------------------------------------------------------------------- # Functions #------------------------------------------------------------------------------- -launchCurlOrE2e() { +laun...
7
diff --git a/Documentation/Usage.md b/Documentation/Usage.md @@ -359,8 +359,8 @@ let result = try! transaction.call() ##### Other Transaction Types By default a `legacy` transaction will be created which is compatible across all chains, regardless of which fork. -To create one of the new transaction types introduced wi...
3
diff --git a/packages/yoroi-extension/app/stores/base/BaseProfileStore.js b/packages/yoroi-extension/app/stores/base/BaseProfileStore.js @@ -273,11 +273,6 @@ export default class BaseProfileStore } } - // THEMES.YOROI_MODERN is the default theme - // TODO: Tests were written for the old theme so we need to use it for t...
12
diff --git a/Bundle/WidgetMapBundle/Warmer/WidgetDataWarmer.php b/Bundle/WidgetMapBundle/Warmer/WidgetDataWarmer.php @@ -149,7 +149,7 @@ class WidgetDataWarmer elseif ($metaData->isCollectionValuedAssociation($association['fieldName'])) { //Even if Widget is cached, we need its Criterias used before cache call - if (!$...
4
diff --git a/src/plugins/Tus10.js b/src/plugins/Tus10.js @@ -49,6 +49,7 @@ module.exports = class Tus10 extends Plugin { this.handlePauseAll = this.handlePauseAll.bind(this) this.handleResumeAll = this.handleResumeAll.bind(this) + this.handleRetryAll = this.handleRetryAll.bind(this) this.handleResetProgress = this.hand...
0
diff --git a/.travis.yml b/.travis.yml @@ -2,8 +2,10 @@ sudo: false language: node_js matrix: include: - - node_js: 14 + - node_js: 10 script: 'npm run test-node:ci' + before_install: + - git config --global url."https://github.com/".insteadOf "git://github.com/" - node_js: node addons: sauce_connect: true
4
diff --git a/src/components/RoomNameInput/index.js b/src/components/RoomNameInput/index.js @@ -13,7 +13,7 @@ class RoomNameInput extends Component { this.setSelection = this.setSelection.bind(this); this.state = { - selection: {start: 0, end: 0}, + selection: undefined, }; }
12
diff --git a/pages/index.js b/pages/index.js @@ -321,7 +321,7 @@ export async function getStaticProps () { }) return [...new Set(data)] - })(require.context('../public/data/', true, /2021[0-9]{4}.json$/)) + })(require.context('../public/data/', true, /202[1-2][0-9]{4}.json$/)) const contributors = await getGitHubContri...
7
diff --git a/components/autocomplete/Autocomplete.js b/components/autocomplete/Autocomplete.js @@ -132,7 +132,7 @@ const factory = (Chip, Input) => { }; handleQueryFocus = (event) => { - this.suggestionsNode.scrollTop = 0; + event.target.scrollTop = 0; this.setState({ active: '', focus: true }); if (this.props.onFocus)...
11
diff --git a/package.json b/package.json "prismarine-block": "^1.1.1", "prismarine-chunk": "^1.10.0", "prismarine-entity": "^0.2.0", - "prismarine-item": "^1.0.1", + "prismarine-item": "^1.1.0", "prismarine-recipe": "^1.0.1", "prismarine-windows": "^1.1.1", "protodef": "^1.6.7",
4
diff --git a/userscript.user.js b/userscript.user.js @@ -46340,10 +46340,22 @@ var $$IMU_EXPORT$$; return src.replace(/(\/img\/[0-9a-f]+-[0-9]+).*?[?&](location=[^&]*).*?$/, "$1?$2"); } - if (domain_nowww === "nos.nl") { + if (domain_nowww === "nos.nl" || + // thanks to llacb47 on github: ... + // https://assets.nos.nl...
7
diff --git a/articles/users/concepts/overview-metadata.md b/articles/users/concepts/overview-metadata.md @@ -46,7 +46,7 @@ You can use the [Management API](/api/management/v2) in order to retrieve, creat |--|--| | [Search user by id](/api/management/v2#!/Users/get_users_by_id) | Use this if you want to search for a use...
2
diff --git a/components/messagequeue/messagequeue.css b/components/messagequeue/messagequeue.css transition: opacity 0.7s ease-in-out; opacity: 1; } -.small { +.bullet-container > .small { color: #004085; background-color: #cce5ff; border-color: #b8daff; border: 1px solid; border-radius: .25rem; } -.warning { +.bullet-...
1
diff --git a/js/bootstrap-datepicker.js b/js/bootstrap-datepicker.js .text(DPGlobal.formatDate(d, titleFormat, this.o.language)); this.picker.find('tfoot .today') .text(todaytxt) - .toggle(this.o.todayBtn !== false); + .css('display', this.o.todayBtn === true ? 'table-cell' : 'none'); this.picker.find('tfoot .clear') ....
14
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,58 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master where X.Y.Z is the semver of most recent plotly.js release. +## [1.35.0] -- 2018-03-07 + +### Added +- Add `automargin` attribute to cartesian axes which auto-expands margins + when ticks, tick labels...
3
diff --git a/ui/app/components/wallet-view.js b/ui/app/components/wallet-view.js @@ -11,6 +11,7 @@ const selectors = require('../selectors') module.exports = connect(mapStateToProps, mapDispatchToProps)(WalletView) function mapStateToProps (state) { + return { network: state.metamask.network, sidebarOpen: state.appStat...
13
diff --git a/userscript.user.js b/userscript.user.js @@ -6788,8 +6788,6 @@ var $$IMU_EXPORT$$; (domain_nowww === "warwick.film" && src.indexOf("/image/") >= 0) || // https://quizizz.com/media/resource/gs/quizizz-media/quizzes/7ba7f6b8-81fe-427a-b455-eb5fabc60880?w=90&h=90 (domain_nowww === "quizizz.com" && src.match(/\...
7
diff --git a/ReviewQueueHelper.user.js b/ReviewQueueHelper.user.js // @description Keyboard shortcuts, skips accepted questions and audits (to save review quota) // @homepage https://github.com/samliew/SO-mod-userscripts // @author @samliew -// @version 1.9.4 +// @version 1.9.5 // // @include https://*stackoverflow.com...
2
diff --git a/packages/@uppy/dashboard/src/components/icons.js b/packages/@uppy/dashboard/src/components/icons.js @@ -2,7 +2,7 @@ const { h } = require('preact') // https://css-tricks.com/creating-svg-icon-system-react/ -function defaultTabIcon () { +function defaultPickerIcon () { return <svg aria-hidden="true" width="...
10
diff --git a/README.md b/README.md [![Maintainability](https://api.codeclimate.com/v1/badges/05ef990fe1ccb3e56067/maintainability)](https://codeclimate.com/github/moleculerjs/moleculer/maintainability) [![David](https://img.shields.io/david/moleculerjs/moleculer.svg)](https://david-dm.org/moleculerjs/moleculer) [![Know...
13
diff --git a/src/common/i18n.js b/src/common/i18n.js @@ -44,9 +44,11 @@ export const translate = (input, params = []) => { const stringToBeTranslated = input.replace(/\{\$({0-9])\}/gi, '%$1'); let translatedString = i18nTranslate(stringToBeTranslated); params.forEach((replacement, index) => { + if (translatedString && ...
3
diff --git a/src/utils/tokenHelper.js b/src/utils/tokenHelper.js @@ -23,7 +23,7 @@ function getTokenBySymbol(symbol) { getWhiteListTokens().forEach(token => { tokensBySymbols[token.symbol] = token; }); - tokensByAddress[ANY_TOKEN.symbol] = ANY_TOKEN; + tokensBySymbols[ANY_TOKEN.symbol] = ANY_TOKEN; } return tokensBySym...
14
diff --git a/packages/openneuro-app/src/scripts/datalad/dashboard/datasets/dataset-tab.jsx b/packages/openneuro-app/src/scripts/datalad/dashboard/datasets/dataset-tab.jsx @@ -84,7 +84,11 @@ const DatasetTab = ({ <div className="col-md-5"> <h2>{title(publicDashboard, savedDashboard)}</h2> {isMobile && !loading && ( - <h...
1
diff --git a/magda-sleuther-format/src/format-engine/measureEvaluatorByHierarchy.ts b/magda-sleuther-format/src/format-engine/measureEvaluatorByHierarchy.ts @@ -16,17 +16,14 @@ export default function getBestMeasureResult( //TODO produce a system that mitigates when all measures return null. What should happen then? if...
13
diff --git a/lib/assets/core/javascripts/cartodb3/components/stack-layout/stack-layout-view.js b/lib/assets/core/javascripts/cartodb3/components/stack-layout/stack-layout-view.js @@ -53,10 +53,6 @@ module.exports = CoreView.extend({ var nextView = this.collection.at(this.model.get('position')).get('createStackView').ap...
12
diff --git a/readme-profiles/vunderkind.md b/readme-profiles/vunderkind.md @@ -18,6 +18,6 @@ What I'm currently interested in: - 3D - Interaction design -<img src="https://github-profile-trophy.vercel.app/?username=tae8838&theme=dracula&column=3&margin-w=15&margin-h=15 (https://github.com/ryo-ma/github-profile-trophy)"...
13
diff --git a/apps/cliock/ChangeLog b/apps/cliock/ChangeLog 0.08: Fixes issue where face would redraw on wake leading to all memory being used and watch crashing. 0.09: Add BTN1 status line with ID,Fw ver, mem %, battery % 0.10: Icon fixed for transparency +0.11: added Heart Rate Monitor status and ability to turn on/of...
3
diff --git a/public/stylesheets/choropleth.css b/public/stylesheets/choropleth.css display:inline-block; position: absolute; top: 22%; - left: 22px; + left: 20.5px; cursor:pointer; color:#2D2A3F; font: normal normal normal 12px/1.4em raleway,sans-serif; font-family: 'Raleway', sans-serif; font-size:10px; - width: 43px;...
7
diff --git a/packages/webpack-plugin/lib/plugin-loader.js b/packages/webpack-plugin/lib/plugin-loader.js @@ -53,7 +53,7 @@ module.exports = function (source) { const callback = (err) => { checkEntryDeps(() => { if (err) return nativeCallback(err) - extract(JSON.stringify(pluginEntry), 'json', resourcePath, 0) + extract...
1
diff --git a/src/graphics/program-lib/chunks/TBNderivative.frag b/src/graphics/program-lib/chunks/TBNderivative.frag @@ -15,6 +15,7 @@ void getTBN() { vec3 B = dp2perp * duv1.y + dp1perp * duv2.y; // construct a scale-invariant frame - float invmax = 1.0 / sqrt( max( dot(T,T), dot(B,B) ) ); + float denom = max( dot(T,T...
9
diff --git a/src/plugins/Dashboard/FilePreview.js b/src/plugins/Dashboard/FilePreview.js @@ -13,8 +13,9 @@ module.exports = function FilePreview (props) { return ( <div class="uppy-DashboardItem-previewIconWrap"> <span class="uppy-DashboardItem-previewIcon" style={{ color: color }}>{icon}</span> - <span class="uppy-Das...
2
diff --git a/src/components/BrowserView/BrowserView.jsx b/src/components/BrowserView/BrowserView.jsx @@ -219,7 +219,7 @@ const BrowserView = () => { size='small' /> )} - label="Brightness" + label="Light Sensitivity" /> </div> </div>
3
diff --git a/src/Broadcast.js b/src/Broadcast.js 'use strict'; const ansi = require('sty'); +ansi.enable(); // force ansi on even when there isn't a tty for the server const wrap = require('wrap-ansi'); const TypeUtil = require('./TypeUtil'); const Broadcastable = require('./Broadcastable');
1
diff --git a/modules/layers/src/solid-polygon-layer/polygon.js b/modules/layers/src/solid-polygon-layer/polygon.js @@ -168,8 +168,6 @@ function copyFlatRing( * Normalize any polygon representation into the "complex flat" format * @param {Array|Object} polygon * @param {Number} positionSize - size of a position, 2 (xy) ...
2
diff --git a/contracts/Synthetix.sol b/contracts/Synthetix.sol @@ -66,7 +66,7 @@ contract Synthetix is ExternStateToken { // Available Synths which can be used with the system Synth[] public availableSynths; mapping(bytes32 => Synth) public synths; - mapping(address => bytes32) public reverseSynths; + mapping(address =...
3
diff --git a/includes/Core/Authentication/Authentication.php b/includes/Core/Authentication/Authentication.php @@ -657,8 +657,6 @@ final class Authentication { 'sitename' => substr( $external_sitename, 0, 30 ), // limit to 30 chars. 'siteurl' => untrailingslashit( home_url() ), ); - - $data['externalCredentialsURL'] = ...
2
diff --git a/src/lib/navigation.js b/src/lib/navigation.js // @flow +/* eslint-disable import/prefer-default-export */ + import type { ComponentType } from "react"; import { withNavigationFocus as rnWithNavigationFocus } from "react-navigation"; import type { NavigationScreenProp, NavigationState } from "react-navigati...
0
diff --git a/origami.json b/origami.json "origamiType": "service", "origamiVersion": 1, "support": "https://github.com/Financial-Times/polyfill-service/issues", + "supportContact": { + "email": "origami.support@ft.com", + "slack": "financialtimes/ft-origami" + }, "supportStatus": "active", "serviceUrl": "https://polyfi...
0
diff --git a/src/index.js b/src/index.js @@ -11,7 +11,7 @@ const pathBuilder = require('./path-builder'); const pipeline = require('./pipeline'); require('babel-core/register')({ - presets: ['react'] + presets: ['react', 'es2015'] }); const idyll = (options = {}, cb) => {
11