code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/scss/layout/_breadcrumb.scss b/scss/layout/_breadcrumb.scss $siimple-breadcrumb-height: 30px; $siimple-breadcrumb-margin-top: 0px; -//Breadcrumb crumb variables -$siimple-breadcrumb-crumb-margin-right: 5px; -$siimple-breadcrumb-crumb-padding-left: 25px; -$siimple-breadcrumb-crumb-padding-right: 10px; +//Br...
10
diff --git a/src/components/selections/select.js b/src/components/selections/select.js 'use strict'; +var tinycolor = require('tinycolor2'); var polybool = require('polybooljs'); var pointInPolygon = require('point-in-polygon/nested'); // could we use contains lib/polygon instead? @@ -112,17 +113,30 @@ function prepSel...
9
diff --git a/module/actor-sheet.js b/module/actor-sheet.js @@ -117,7 +117,7 @@ export class GurpsActorSheet extends ActorSheet { const sheet = this.actor.getFlag("core", "sheetClass") // Token Configuration - const canConfigure = game.user.isGM || (this.actor.owner && game.user.can("TOKEN_CONFIGURE")); + const canConfi...
11
diff --git a/token-metadata/0x10bA8C420e912bF07BEdaC03Aa6908720db04e0c/metadata.json b/token-metadata/0x10bA8C420e912bF07BEdaC03Aa6908720db04e0c/metadata.json "symbol": "RAISE", "address": "0x10bA8C420e912bF07BEdaC03Aa6908720db04e0c", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED...
3
diff --git a/server/game/drawcard.js b/server/game/drawcard.js @@ -44,18 +44,6 @@ class DrawCard extends BaseCard { return this.hasKeyword('Stealth'); } - isTerminal() { - return this.hasKeyword('Terminal'); - } - - isBestow() { - return !_.isUndefined(this.bestowMax); - } - - isRenown() { - return this.hasKeyword('ren...
2
diff --git a/src/schema/util.js b/src/schema/util.js @@ -12,7 +12,13 @@ exports.anyOneOf = function (schema, value, exception, map, action, isSerialize, const mapCopy = new Map(map); // if serializing make sure the value validates against this schema before serialize - if (isSerialize && subSchema.validate(value)) retu...
7
diff --git a/client/src/components/views/Login/index.js b/client/src/components/views/Login/index.js @@ -139,8 +139,9 @@ class Login extends Component { </Col> </Col> <Tour + client={{}} steps={this.generateTraining()} - isOpen={this.state.training} + training={this.state.training} onRequestClose={() => this.setState({...
1
diff --git a/src/Powercord/index.js b/src/Powercord/index.js +const { shell: { openExternal } } = require('electron'); const EventEmitter = require('events'); const { get } = require('powercord/http'); const { sleep } = require('powercord/util'); const { WEBSITE } = require('powercord/constants'); -const modules = requ...
9
diff --git a/src/gml/type/GmlTypeParser.hx b/src/gml/type/GmlTypeParser.hx @@ -95,7 +95,9 @@ class GmlTypeParser { } if (isTIN) warnAboutMissing = typeWarn; } - if (kind == KTemplateItem) { + if (name == "either") { // Either<A,B> -> (A|B) + result = TEither(params); + } else if (kind == KTemplateItem) { if (params.len...
11
diff --git a/test/jasmine/tests/axes_test.js b/test/jasmine/tests/axes_test.js @@ -5431,3 +5431,77 @@ describe('Test template:', function() { .then(done); }); }); + +describe('more react tests', function() { + var gd; + + beforeEach(function() { + gd = createGraphDiv(); + }); + + afterEach(destroyGraphDiv); + + it('sho...
0
diff --git a/src/components/appNavigation/stackNavigation.js b/src/components/appNavigation/stackNavigation.js @@ -18,7 +18,6 @@ const log = logger.child({ from: 'stackNavigation' }) * if there is not in a correct navigation flow. * Example: doesn't makes sense to navigate to Amount if there is no nextRoutes * @param {...
2
diff --git a/src/QuickMenu.jsx b/src/QuickMenu.jsx @@ -210,11 +210,18 @@ export default function QuickMenu() { } registerIoEventHandler('mouseup', mouseup); + function wheel(e) { + // nothing + return false; + } + registerIoEventHandler('wheel', wheel); + return () => { unregisterIoEventHandler('keyup', keyup); unregis...
0
diff --git a/README.md b/README.md Renders SVG from graphs described in the [DOT](https://www.graphviz.org/doc/info/lang.html) language using the [@hpcc-js/wasm](https://github.com/hpcc-systems/hpcc-js-wasm) port of [Graphviz](http://www.graphviz.org) and does animated transitions between graphs. -[![Build Status](http...
14
diff --git a/src/connectors/bbc-sounds.js b/src/connectors/bbc-sounds.js 'use strict'; +const trackItemSelector = '.sc-c-basic-tile'; + +setupConnector(); + +function setupConnector() { + if (isLiveRadio()) { + setupPropertiesForLiveRadio(); + } else { + setupPropertierForOfflineRecord(); + } +} + +function isLiveRadio...
7
diff --git a/index.html b/index.html var originalTask = ''; var options = { - serverUrl: "/snowstorm/snomed-ct/v2", - queryServerUrl: "/snowstorm/snomed-ct/v2", + serverUrl: "/snowstorm/", + queryServerUrl: "/snowstorm/", queryBranch: "MAIN/2019-07-31", edition: "MAIN", release: "2019-07-31", on July 31, 2019.</p> <h3>...
1
diff --git a/userscript.user.js b/userscript.user.js @@ -100426,7 +100426,22 @@ var $$IMU_EXPORT$$; } } - if (!varvalue) { + var usevar = !!varvalue; + + if (typeof varvalue === "object") { + var varobj = varvalue; + varvalue = ""; + + if ("usable" in varobj) { + usevar = varobj.usable; + } + + if ("value" in varobj) {...
11
diff --git a/src/inner-slider.js b/src/inner-slider.js @@ -386,7 +386,6 @@ export class InnerSlider extends React.Component { autoPlay = (playType) => { if (this.autoplayTimer) { - console.warn("autoPlay is triggered more than once") clearInterval(this.autoplayTimer) } const autoplaying = this.state.autoplaying
2
diff --git a/en/tutorial/getting-started.md b/en/tutorial/getting-started.md ## Get ECharts -You can get ECharts through the following ways. +First, install ECharts using one of the following methods: -1. Choose the version you need and download from [official download page](http://echarts.baidu.com/download.html). Bas...
7
diff --git a/src/pages/crafts/index.js b/src/pages/crafts/index.js @@ -199,6 +199,8 @@ function Crafts() { totalCost = totalCost + requiredItem.item.avg24hPrice * requiredItem.count; if(requiredItem.item.avg24hPrice * requiredItem.count === 0){ + console.log(`Found a zero cost item! ${requiredItem.item.name}`); + hasZe...
7
diff --git a/.vscode/settings.json b/.vscode/settings.json }, "eslint.alwaysShowStatus": true, "eslint.lintTask.enable": true, - "eslint.enable": true, + "eslint.format.enable": true, + "editor.defaultFormatter": "dbaeumer.vscode-eslint", "typescript.tsdk": "./node_modules/typescript/lib" }
12
diff --git a/src/botPage/view/react-components/HeaderWidgets.js b/src/botPage/view/react-components/HeaderWidgets.js @@ -14,8 +14,8 @@ const ServerTime = ({ api }) => { const month = `0${date.getMonth() + 1}`.slice(-2); const day = `0${date.getUTCDate()}`.slice(-2); const hours = `0${date.getUTCHours()}`.slice(-2); - c...
3
diff --git a/Source/Scene/GroundPrimitive.js b/Source/Scene/GroundPrimitive.js @@ -85,7 +85,7 @@ define([ * </p> * <p> * Because of the cutting edge nature of this feature in WebGL, it requires the EXT_frag_depth extension, which is currently only supported in Chrome, - * Firefox, and Edge. Apple support is expected in...
3
diff --git a/src/encoded/upgrade/upgrade_data/analysis_step_5_to_6.py b/src/encoded/upgrade/upgrade_data/analysis_step_5_to_6.py @@ -118,7 +118,7 @@ label_mapping = { 'j-michael-cherry:208715a1-1998-4191-9f00-16378333ccb1': 'dnase-bed-to-bigbed-step', 'j-michael-cherry:22dee925-30d9-4b01-ba3c-ea5cbfb15c98': 'deleted-lr...
2
diff --git a/LightboxImages.user.js b/LightboxImages.user.js // @description Opens image links in a lightbox instead of new window/tab in main & chat. Lightbox images that are displayed smaller than it's original size. // @homepage https://github.com/samliew/SO-mod-userscripts // @author @samliew -// @version 1.4.1 +//...
8
diff --git a/core/keyboard_nav/key_map.js b/core/keyboard_nav/key_map.js @@ -78,7 +78,9 @@ Blockly.user.keyMap.setKeyMap = function(keyMap) { * @package */ Blockly.user.keyMap.getKeyMap = function() { - return Object.assign({}, Blockly.user.keyMap.map_); + var map = {}; + Blockly.utils.object.mixin(map, Blockly.user.ke...
2
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -209,7 +209,7 @@ jobs: bundle exec fastlane release \ submit:true \ apk_path:$APK_PATH \ - upload_key:$UPLOAD_KEY_PATH + upload_key:$PLAY_STORE_UPLOAD_KEY_PATH alpha-ios: macos:
4
diff --git a/test/jasmine/tests/parcoords_test.js b/test/jasmine/tests/parcoords_test.js @@ -792,6 +792,36 @@ describe('parcoords', function() { }); }); + it('Calling `Plotly.restyle` with zero panels left should erase lines', function(done) { + + var mockCopy = Lib.extendDeep({}, mock2); + var gd = createGraphDiv(); +...
0
diff --git a/src/index.js b/src/index.js @@ -35,8 +35,8 @@ if (style.styleSheet) { * decide if we need to clear storage */ const upgradeVersion = async () => { - const valid = ['etoro', 'beta.11', 'alphav3'] - const required = Config.isEToro ? 'etoro' : 'alphav3' + const valid = ['etoro', 'phase0'] + const required = C...
0
diff --git a/server.js b/server.js @@ -20,9 +20,10 @@ async.series([ if(cluster.isMaster) { var router = require('./lib/routes'); app.use(router); - app.listen(3000, function() { + var server = app.listen(3000, function() { console.log('api server listening on port 3000!'); }); + server.timeout = 600000; } });
12
diff --git a/src/lib/expandTailwindAtRules.js b/src/lib/expandTailwindAtRules.js @@ -235,7 +235,6 @@ export default function expandTailwindAtRules(context) { if (env.DEBUG) { console.log('Potential classes: ', candidates.size) console.log('Active contexts: ', sharedState.contextSourcesMap.size) - console.log('Content m...
2
diff --git a/src/reducers/account/index.js b/src/reducers/account/index.js @@ -114,15 +114,16 @@ const account = handleActions({ ...state, loginResetAccounts: true }), - [getProfileBalance]: (state, { payload, ready, error }) => { - if (!ready || error) { - return state - } - - return { + [updateStakingAccount]: (state...
9
diff --git a/src/plots/cartesian/axis_autotype.js b/src/plots/cartesian/axis_autotype.js @@ -69,14 +69,18 @@ function moreDates(a, calendar) { // are the (x,y)-values in gd.data mostly text? // require twice as many DISTINCT categories as distinct numbers function category(a) { + var len = a.length; + if(!len) return f...
0
diff --git a/docs/articles/documentation/index.md b/docs/articles/documentation/index.md @@ -9,3 +9,4 @@ permalink: /documentation/ * [Test API](test-api/index.md) * [Using TestCafe](using-testcafe/index.md) * [Extending TestCafe](extending-testcafe/index.md) +* [Recipes](recipes/index.md) \ No newline at end of file
0
diff --git a/src/structs/ClientManager.js b/src/structs/ClientManager.js @@ -2,10 +2,10 @@ process.env.DRSS = true const config = require('../config.js') const connectDb = require('../rss/db/connect.js') const dbOpsGeneral = require('../util/db/general.js') -const dbOpsVips = require('../util/db/vips.js') const Schedul...
4
diff --git a/build/Bundler.js b/build/Bundler.js @@ -16,15 +16,31 @@ export default class Bundler{ this.version = "/* Tabulator v" + version + " (c) Oliver Folkerd <%= moment().format('YYYY') %> */"; } - _suppressCircularWarnings(warn, defaultHandler){ - var ignoredCircularFiles = [ + _suppressUnnecessaryWarnings(warn,...
7
diff --git a/token-metadata/0xD83A162d4808c370A1445646e64CC4861eB60b92/metadata.json b/token-metadata/0xD83A162d4808c370A1445646e64CC4861eB60b92/metadata.json "symbol": "OXY", "address": "0xD83A162d4808c370A1445646e64CC4861eB60b92", "decimals": 8, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" }...
3
diff --git a/src/components/LandingPage/LandingPage.scss b/src/components/LandingPage/LandingPage.scss overflow: hidden; position: relative; color: $white; - background: linear-gradient(180deg, #1f6cbf 0%, rgba(255, 255, 255, 0) 100%), #007bff; + background: linear-gradient(180deg, #206bbd 2%, rgba(249, 252, 255, 0) 80...
7
diff --git a/edit.js b/edit.js @@ -2609,45 +2609,6 @@ const geometryWorker = (() => { const _getSlabTorchLightOffset = spec => spec.torchLightsStart/Uint8Array.BYTES_PER_ELEMENT; const _getSlabIndexOffset = spec => spec.indicesStart/Uint32Array.BYTES_PER_ELEMENT; - mesh.addSlab = (x, y, z, spec) => { - const index = pl...
2
diff --git a/docs/blog/100days/index.md b/docs/blog/100days/index.md @@ -5,8 +5,6 @@ author: "Hashim Warren" tags: ["learning-to-code", "contest", "100-Days-of-Gatsby"] --- -import EmailCaptureForm100Days from "../../../www/src/components/email-capture-form-100days" - ### If you're looking for a fun way to explore how ...
14
diff --git a/assets/js/modules/analytics/common/account-create/create-account-field.js b/assets/js/modules/analytics/common/account-create/create-account-field.js @@ -32,7 +32,8 @@ export default function CreateAccountField( { name, label, } ) { - if ( 'undefined' === typeof value ) { + // Ensure field doesn't render u...
7
diff --git a/generators/server/templates/src/test/java/package/web/rest/KafkaResourceIT.java.ejs b/generators/server/templates/src/test/java/package/web/rest/KafkaResourceIT.java.ejs @@ -36,6 +36,7 @@ import org.springframework.test.web.servlet.setup.MockMvcBuilders; import org.springframework.test.web.reactive.server....
14
diff --git a/Source/Core/BingMapsGeocoderService.js b/Source/Core/BingMapsGeocoderService.js /*global define*/ define([ './BingMapsApi', + './Check', './defaultValue', './defined', './defineProperties', - './DeveloperError', './loadJsonp', './Rectangle' ], function( BingMapsApi, + Check, defaultValue, defined, definePr...
14
diff --git a/packages/idyll-components/src/generateHeaders.js b/packages/idyll-components/src/generateHeaders.js @@ -25,7 +25,7 @@ const GenerateHeaders = props => { attributeProps.id = generateId(headerText); } - return <HeaderTag {...attributeProps}>{headerText}</HeaderTag>; + return <HeaderTag {...attributeProps}>{c...
1
diff --git a/package.json b/package.json { "name": "prettier-atom", "main": "./dist/main.js", - "version": "0.23.0", + "version": "0.23.1", "description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration", "keywords": [ "atom",
6
diff --git a/test/unit/authCanExecuteResourceTest.js b/test/unit/authCanExecuteResourceTest.js @@ -154,6 +154,23 @@ describe('authCanExecuteResource', () => { }] ); + const canExecute = authCanExecuteResource(policy, resourceTwo); + expect(canExecute).to.eq(false); + }); + }); + context('and there is also an Allow stat...
0
diff --git a/content/authors/tom-leposo/index.md b/content/authors/tom-leposo/index.md @@ -3,6 +3,6 @@ title: Tom Leposo type: authors github: https://github.com/tomleposo images: - - url: /engineering-education/authors/tom-leposo/avatar.jpg + - url: /engineering-education/authors/tom-leposo/avatar.jpeg --- -Tom is an ...
10
diff --git a/packages/web/src/styles/Base.js b/packages/web/src/styles/Base.js @@ -6,7 +6,7 @@ const Base = styled("div")` font-size: ${props => props.theme.fontSize}; color: ${props => props.theme.textColor}; - input { + input, button, textarea, select { font-family: ${props => props.theme.fontFamily}; }
3
diff --git a/src/scss/includes/panels/poi_panel.scss b/src/scss/includes/panels/poi_panel.scss @@ -330,7 +330,6 @@ $HEADER_SIZE: 30px; .poi_panel__actions { width: 100%; position: relative; - overflow: hidden; margin-bottom: 10px; } @@ -338,7 +337,7 @@ $HEADER_SIZE: 30px; float: left; text-decoration: none; text-align:...
7
diff --git a/site/rabbit.ent b/site/rabbit.ent @@ -15,7 +15,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> -<!ENTITY version-java-client "5.5.3"> +<!ENTITY version-java-client "5.6.0"> <...
12
diff --git a/client/src/components/views/TractorBeam/style.scss b/client/src/components/views/TractorBeam/style.scss } .stressBar { position: absolute; - top: 60%; + bottom: 5%; right: 33%; } .strengthBar { position: absolute; - top: 60%; + bottom: 5%; right: 0%; } .barLabel {
1
diff --git a/src/content/cli-wrangler/authentication.md b/src/content/cli-wrangler/authentication.md @@ -25,24 +25,16 @@ To set up `wrangler` to work with your Cloudflare user, use the following comman You can also configure your global user with environment variables. This is the preferred method for using Wrangler in...
7
diff --git a/src/reducers/event-filters.js b/src/reducers/event-filters.js @@ -74,7 +74,7 @@ const EventFilters = (now: void => DateTime) => { case NAVIGATION: if (routesWithoutEvents.includes(action.route)) { const newTime = now(); - const diff = now() + const diff = newTime .diff(state.showEventsAfter, "minutes") .as...
2
diff --git a/components/base-adresse-nationale/tooltip.js b/components/base-adresse-nationale/tooltip.js @@ -13,6 +13,8 @@ function Tooltip({message, direction, children}) { position: relative; display: inline-block; cursor: help; + display: flex; + align-self: center; } .tooltip-bottom .tooltip-text, .tooltip-left .to...
0
diff --git a/src/pages/Armor.jsx b/src/pages/Armor.jsx @@ -121,8 +121,16 @@ function Armor() { if(!materialDestructabilityMap[item.itemProperties.ArmorMaterial]){ console.log(`Missing ${item.itemProperties.ArmorMaterial}`); } + + const match = item.name.match(/(.*)\s\(.+?$/); + let itemName = item.name; + + if(match){ ...
7
diff --git a/devices/camera.js b/devices/camera.js @@ -665,7 +665,7 @@ class Camera extends RingPolledDevice { await this.updateEventStreamUrl() this.publishEventSelectState() - if (this.data.event_select.recordingUrl === '<URL Not Found>') { + if (this.data.event_select.recordingUrl === '<No Valid URL>') { this.debug(...
7
diff --git a/assets/sass/components/setup/_googlesitekit-setup-module.scss b/assets/sass/components/setup/_googlesitekit-setup-module.scss > .googlesitekit-setup-module__input { margin: 1em 0; } + + div[name="optimizeID"] { + margin-bottom: 0; + + + .mdc-text-field-helper-line { + margin-bottom: 0; + } + } } .googlesit...
2
diff --git a/site/gatsby-config.js b/site/gatsby-config.js @@ -72,7 +72,7 @@ module.exports = { { resolve: `gatsby-plugin-google-analytics`, options: { - trackingId: '101206186', + trackingId: 'UA-101206186-1', // Puts tracking script in the head instead of the body head: false, // Setting this parameter is optional
12
diff --git a/src/components/MapPanel/index.js b/src/components/MapPanel/index.js @@ -7,8 +7,8 @@ class MapPanel extends Component { console.log('rendered map panel'); const stats = this.props.fmaPanelData.stats; return ( - <div style={{ backgroundColor: '#DEDCDC', padding: '50px 25px 50px 25px', textAlign: 'left' }}> -...
2
diff --git a/contributors.json b/contributors.json "twitter": "https://twitter.com/eDangol901", "website": "https://www.quora.com/q/abettercommunity" }, + "femakin": { + "country": "Nigeria", + "linkedin": "https://www.linkedin.com/in/oluwafemi-tosin-akinyemi-6b028270/", + "name": "Femi Akinyemi", + "twitter": "https:/...
3
diff --git a/checkfiles/checkfiles.py b/checkfiles/checkfiles.py @@ -193,7 +193,8 @@ def check_format(encValData, job, path): ['validateFiles'] + validate_args + [path], stderr=subprocess.STDOUT) except subprocess.CalledProcessError as e: errors['validateFiles'] = e.output.decode(errors='replace').rstrip('\n') - update...
0
diff --git a/src/components/fx/hover.js b/src/components/fx/hover.js @@ -385,6 +385,19 @@ function _hover(gd, evt, subplot, noHoverEvent) { yval = yvalArray[subploti]; } + var showSpikes = fullLayout.xaxis && fullLayout.xaxis.showspikes && fullLayout.yaxis && fullLayout.yaxis.showspikes; + var showCrosslines = fullLayo...
5
diff --git a/docs/content/examples/charts/column/AutoWidth.js b/docs/content/examples/charts/column/AutoWidth.js -import { HtmlElement, Grid, Repeater } from 'cx/widgets'; +import { HtmlElement, Grid, Repeater, Content, Tab } from 'cx/widgets'; import { Controller, KeySelection } from 'cx/ui'; import { Svg, Rectangle, ...
0
diff --git a/src/main/webapp/org/cboard/controller/config/widgetCtrl.js b/src/main/webapp/org/cboard/controller/config/widgetCtrl.js @@ -142,12 +142,12 @@ cBoard.controller('widgetCtrl', function ($scope, $state, $stateParams, $http, $ $scope.value_series_types = [ {name: translate('CONFIG.WIDGET.LINE'), value: 'line'}...
3
diff --git a/src/commands/orgs/collaborators/list.ts b/src/commands/orgs/collaborators/list.ts @@ -19,7 +19,7 @@ export default class OrgCollaboratorsListCommand extends Command { async run(client: MobileCenterClient, portalBaseUrl: string): Promise<CommandResult> { const users: models.OrganizationUserResponse[] = awai...
7
diff --git a/src/entities/styles/_metadata-editor.css b/src/entities/styles/_metadata-editor.css .sc-metadata-editor { display: flex; - width: 100%; + flex-direction: row; + height: 100%; + overflow: auto; + flex-grow: 1; +} + +.sc-metadata-editor > .se-main-section { + flex: 1 1 600px; + display: flex; + flex-directio...
4
diff --git a/articles/api/management/v2/user-search.md b/articles/api/management/v2/user-search.md @@ -99,7 +99,6 @@ Below are some example queries to illustrate the kinds of queries that are possi Use Case | Query ---------|---------- -Search across all fields for "john" | `john` Search for all users whose name _conta...
2
diff --git a/docs/articles/documentation/using-testcafe/using-testcafe-docker-image.md b/docs/articles/documentation/using-testcafe/using-testcafe-docker-image.md @@ -47,16 +47,44 @@ This command takes the following parameters: You can run tests in the Chromium and Firefox browsers preinstalled to the Docker image. Add...
0
diff --git a/src/components/Modeler.vue b/src/components/Modeler.vue @@ -236,14 +236,17 @@ export default { /* Add all other elements */ + const flowElements = process.get('flowElements'); + const artifacts = process.get('artifacts'); + + /* First load the flow elements */ - process.get('flowElements') + flowElements ....
2
diff --git a/public/javascripts/SVValidate/src/data/Form.js b/public/javascripts/SVValidate/src/data/Form.js @@ -71,12 +71,12 @@ function Form(url) { svv.panoramaContainer.reset(); svv.panoramaContainer.setLabelList(result.labels); svv.panoramaContainer.loadNewLabelOntoPanorama(); - svv.modalMissionComplete.setProperty...
1
diff --git a/README.md b/README.md @@ -42,6 +42,7 @@ GET https://api.spacexdata.com/v2/launches/latest "cores": [ { "core_serial": "B1033", + "flight": 1, "reused": false, "land_success": false, "landing_type": "ASDS", @@ -49,6 +50,7 @@ GET https://api.spacexdata.com/v2/launches/latest }, { "core_serial": "B1025", + "f...
3
diff --git a/scripts/create-secrets/prompts/inquirer-fuzzy-path.js b/scripts/create-secrets/prompts/inquirer-fuzzy-path.js @@ -53,11 +53,11 @@ class InquirerFuzzyPath extends InquirerAutocomplete { const choice = this.currentChoices.getChoice(this.selected); if (!choice) { this.render( - "You need to select a file. Mak...
7
diff --git a/spec/models/carto/oauth_app_user_spec.rb b/spec/models/carto/oauth_app_user_spec.rb @@ -156,19 +156,22 @@ module Carto @user = FactoryGirl.create(:valid_user) @carto_user = Carto::User.find(@user.id) @app = FactoryGirl.create(:oauth_app, user: @carto_user) - @table = create_table(user_id: @carto_user.id) +...
7
diff --git a/web/webpack.config.js b/web/webpack.config.js @@ -60,8 +60,7 @@ module.exports = function(env) { __BASE_URL__: JSON.stringify("baseUrl" in env ? env.baseUrl : "/"), __UI_API__: JSON.stringify(env.apiUrl || "https://ui.bitshares.eu/api"), __TESTNET__: !!env.testnet - }), - new webpack.optimize.ModuleConcate...
5
diff --git a/articles/libraries/lock/v11/configuration.md b/articles/libraries/lock/v11/configuration.md @@ -525,10 +525,6 @@ For more details about supported parameters check the [Authentication Parameters Defaults to true. When set to true, redirect mode will be used. If set to false, [popup mode](/libraries/lock/v11...
2
diff --git a/src/templates/workshop.js b/src/templates/workshop.js import React, { Component, Fragment } from 'react' +import styled from 'styled-components' import { Box, Container, @@ -32,20 +33,16 @@ import Footer from 'components/Footer' import { lowerCase, camelCase, isEmpty } from 'lodash' import { org } from 'da...
7
diff --git a/src/extensions/default/HTMLCodeHints/HtmlAttributes.json b/src/extensions/default/HTMLCodeHints/HtmlAttributes.json "dir": { "attribOption": ["ltr", "rtl"], "global": "true"}, "draggable": { "attribOption": ["auto", "false", "true"], "global": "true" }, "dropzone": { "attribOption": ["copy", "move", "link"...
12
diff --git a/scene-previewer.js b/scene-previewer.js @@ -95,8 +95,6 @@ class ScenePreviewer { this.cubeCamera.update(renderer, this.previewScene); } }; -// const createScenePreviewer = () => new ScenePreviewer(); export { ScenePreviewer, - // createScenePreviewer, }; \ No newline at end of file
2
diff --git a/tests/typed_blocks/type_unification_test.js b/tests/typed_blocks/type_unification_test.js @@ -343,8 +343,8 @@ function test_type_unification_lambdaStructure() { var block = workspace.newBlock('lambda_typed'); var var1 = workspace.newBlock('variables_get_typed'); // Set the same variable name with the name ...
1
diff --git a/layouts/partials/head.html b/layouts/partials/head.html <meta property="og:image" content="{{ .Site.Params.image }}"> <meta property="og:site_name" content="{{ .Site.Title }}"> <meta property="og:type" content="website"> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title...
0
diff --git a/src/Expression.js b/src/Expression.js @@ -21,6 +21,7 @@ export class Expression { this.params = params this.table = model.table + this.already = {} // Fields already processed this.conditions = [] // Condition expressions this.filters = [] // Filter expressions this.key = {} // Primary key attribute @@ -62...
1
diff --git a/token-metadata/0x24e96809B4E720Ea911bc3De8341400E26d6E994/metadata.json b/token-metadata/0x24e96809B4E720Ea911bc3De8341400E26d6E994/metadata.json "symbol": "VRTN", "address": "0x24e96809B4E720Ea911bc3De8341400E26d6E994", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/src/matrix/net/HomeServerApi.ts b/src/matrix/net/HomeServerApi.ts @@ -28,7 +28,7 @@ type RequestMethod = "POST" | "GET" | "PUT"; const CS_R0_PREFIX = "/_matrix/client/r0"; const DEHYDRATION_PREFIX = "/_matrix/client/unstable/org.matrix.msc2697.v2"; -type Ctor = { +type Options = { homeserver: string; acces...
10
diff --git a/packages/node_modules/node-red/red.js b/packages/node_modules/node-red/red.js @@ -321,11 +321,6 @@ httpsPromise.then(function(startupHttps) { settings.userDir = parsedArgs.userDir; } - if (!settings.userDir) { - console.log("No Node-RED userDir set, exiting") - process.exit(1) - } - try { RED.init(server,s...
2
diff --git a/generators/common/templates/sonar-project.properties.ejs b/generators/common/templates/sonar-project.properties.ejs @@ -30,18 +30,18 @@ sonar.exclusions=<%= CLIENT_MAIN_SRC_DIR %>content/**/*.*, <%= CLIENT_MAIN_SRC_D sonar.issue.ignore.multicriteria=<%_ if (!skipServer) { _%>S3437,<% if (authenticationType...
3
diff --git a/website/lexonomy.py b/website/lexonomy.py @@ -611,7 +611,9 @@ def publicentry(dictID, entryID): elif "_css" in configs["xemplate"]: html = xml else: - html = "<script type='text/javascript'>$('#viewer').html(Xemplatron.xml2html('"+re.sub(r"'","\\'", xml)+"', "+json.dumps(configs["xemplate"])+", "+json.dump...
1
diff --git a/articles/cross-origin-authentication/index.md b/articles/cross-origin-authentication/index.md @@ -31,9 +31,9 @@ Configuring your client for cross-origin authentication is a process that requir 1. In the [client settings](${manage_url}/#/applications/${account.clientId}/settings) for your application, click...
2
diff --git a/js/views/search/Results.js b/js/views/search/Results.js @@ -67,7 +67,8 @@ export default class extends baseVw { renderCards(models) { const resultsFrag = document.createDocumentFragment(); const end = this.pageSize * (Number(this.serverPage) + 1) - (this.pageSize - models.length); - const start = end - thi...
12
diff --git a/src/index.html b/src/index.html </table> <div> <button class="wButton wButton-neg fade" type="submit">SUBMIT</button><span class="divider-2"></span> - <button class="wButton wButton-neg fade" type="button" ng-click="ctrl.resetForm()">CANCEL</button> + <button class="wButton wButton-neg fade" type="button" ...
10
diff --git a/OurUmbraco.Site/Views/Partials/Documentation/Breadcrumb.cshtml b/OurUmbraco.Site/Views/Partials/Documentation/Breadcrumb.cshtml } } - @if (!absolutePath.EndsWith("/")) + @if (!absolutePath.Contains("-v")) + { + if (!absolutePath.EndsWith("/")) { <li>@absolutePath.Substring(absolutePath.LastIndexOf('/') + 1...
2
diff --git a/src/android/java/io/jxcore/node/SurroundingStateObserver.java b/src/android/java/io/jxcore/node/SurroundingStateObserver.java @@ -8,9 +8,20 @@ import org.thaliproject.p2p.btconnectorlib.PeerProperties; public interface SurroundingStateObserver { - + /** + * Notifies node layer about peer changes detected o...
0
diff --git a/snowpack/src/types.ts b/snowpack/src/types.ts @@ -133,11 +133,18 @@ export interface PluginLoadOptions { } export interface PluginTransformOptions { + /** The absolute file path of the source file, on disk. */ id: string; + /** The extension of the file */ fileExt: string; + /** Contents of the file to tra...
0
diff --git a/packages/eslint-plugin-orbit-components/package.json b/packages/eslint-plugin-orbit-components/package.json ], "scripts": { "build": "rm -fr ./dist && babel ./src --extensions '.ts' --out-dir ./dist", - "prepublishOnly": "build" + "prepublishOnly": "yarn build" }, "devDependencies": { "@babel/preset-env": ...
1
diff --git a/packages/component-library/src/Sandbox/Sandbox.js b/packages/component-library/src/Sandbox/Sandbox.js import React from 'react'; import { css } from 'emotion'; -import Dropdown from '../Dropdown/Dropdown'; import BaseMap from '../BaseMap/BaseMap'; import CivicSandboxMap from '../CivicSandboxMap/CivicSandbo...
2
diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml @@ -5,6 +5,17 @@ jobs: build: runs-on: ubuntu-latest steps: + - uses: hmarr/auto-approve-action@v2.0.0 + if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' + with: + github-token: "${{ secrets.GITHUB_TOK...
13
diff --git a/scenes/street.scn b/scenes/street.scn "quaternion": [0, 0, 0, 1], "start_url": "https://webaverse.github.io/plants/" }, + { + "position": [0, 0, 0], + "quaternion": [0, 0, 0, 1], + "start_url": "https://webaverse.github.io/dual-contouring-terrain/" + }, { "position": [ -95,
0
diff --git a/guide/popular-topics/canvas.md b/guide/popular-topics/canvas.md @@ -156,7 +156,7 @@ client.on('guildMemberAdd', async member => { </branch> -Now, you need to load the image you want to use into Canvas. In order to have more sufficient coverage, we'll first show you how to load a basic image from a local di...
1
diff --git a/test/unit/sql/sync.js b/test/unit/sql/sync.js @@ -6,13 +6,8 @@ module.exports = function() { var Sync = require(path.resolve(basePath + '/lib/sync')); describe('Sync', function() { - - var stubSync = function(idAttribute) { + var stubModel = function(idAttribute) { var qd = []; - var stubQuery = function()...
10
diff --git a/docs/releasing/publishing-from-a-support-branch.md b/docs/releasing/publishing-from-a-support-branch.md @@ -22,13 +22,13 @@ However, this approach has risks. For example, it creates a messy commit history 1. At stand-up, person leading the release (usually a developer) to tell the GOV.UK Design System team...
14
diff --git a/storage-providers/appsensor-storage-influxdb/src/main/java/org/owasp/appsensor/storage/influxdb/Utils.java b/storage-providers/appsensor-storage-influxdb/src/main/java/org/owasp/appsensor/storage/influxdb/Utils.java @@ -34,7 +34,7 @@ public class Utils { // fields / tags public static final String LABEL = ...
1
diff --git a/checkfiles/checkfiles.py b/checkfiles/checkfiles.py @@ -428,7 +428,11 @@ def process_fastq_file(job, fastq_data_stream, session, url): try: line_index = 0 for encoded_line in fastq_data_stream.stdout: + try: line = encoded_line.decode('utf-8') + except UnicodeDecodeError: + errors['readname_encoding'] = 'E...
0